Question
Create Album via API
Hello,
Documentation:
https://developer.adobe.com/lightroom/lightroom-api-docs/api/#tag/Albums
PUT
https://lr.adobe.io/v2/catalogs/{catalog_id}/albums/{album_id}
{
"subtype": "project",
"serviceId": "string",
"payload":
{
"userCreated": "string",
"userUpdated": "string",
"name": "string",
"cover":
{
"id": "string"
},
"parent":
{
"id": "string"
},
"publishInfo":
{
"servicePayload": "string",
"remoteId": "string",
"created": "string",
"updated": "string",
"deleted": true,
"remoteLinks":
{
"edit":
{
"href": "string"
},
"view":
{
"href": "string"
}
}
}
}
}
Could somepne please explain:
1) {album_id} in URL - how to fill it? It is new album
2) payload object - how to fill it? I undestand "name" field, but why/how I have to fill other fields? Are there optional fieds in Payload?
