{ "opencollection": "1.0.0", "info": { "name": "Adobe Lightroom Lightroom Album Assets Albums API", "version": "2" }, "request": { "auth": { "type": "oauth2", "flow": "authorization_code", "authorizationUrl": "https://ims-na1.adobelogin.com/ims/authorize/v2", "accessTokenUrl": "https://ims-na1.adobelogin.com/ims/token/v3", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Albums", "type": "folder" }, "items": [ { "info": { "name": "Adobe Lightroom List Albums in a Catalog", "type": "http" }, "http": { "method": "GET", "url": "https://lr.adobe.io/v2/catalogs/:catalog_id/albums", "headers": [ { "name": "X-Api-Key", "value": "" } ], "params": [ { "name": "catalog_id", "value": "", "type": "path", "description": "Unique identifier of the Lightroom catalog" }, { "name": "subtype", "value": "collection", "type": "query", "description": "Filter albums by subtype" }, { "name": "limit", "value": "10", "type": "query", "description": "Maximum number of results" }, { "name": "offset", "value": "10", "type": "query", "description": "Pagination offset" } ] }, "docs": "Retrieves a paginated list of all albums in the specified catalog. Albums may be of subtype collection, collection_set, or project." }, { "info": { "name": "Adobe Lightroom Get Album Details", "type": "http" }, "http": { "method": "GET", "url": "https://lr.adobe.io/v2/catalogs/:catalog_id/albums/:album_id", "headers": [ { "name": "X-Api-Key", "value": "" } ], "params": [ { "name": "catalog_id", "value": "", "type": "path", "description": "Unique identifier of the Lightroom catalog" }, { "name": "album_id", "value": "", "type": "path", "description": "Unique identifier of the album (UUID format)" } ] }, "docs": "Retrieves detailed metadata for a specific album including its name, subtype, cover asset reference, parent album reference, and timestamps." }, { "info": { "name": "Adobe Lightroom Create or Update an Album", "type": "http" }, "http": { "method": "PUT", "url": "https://lr.adobe.io/v2/catalogs/:catalog_id/albums/:album_id", "headers": [ { "name": "X-Api-Key", "value": "" } ], "params": [ { "name": "catalog_id", "value": "", "type": "path", "description": "Unique identifier of the Lightroom catalog" }, { "name": "album_id", "value": "", "type": "path", "description": "Unique identifier of the album (UUID format)" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new album or updates an existing album. The album_id should be a client-generated UUID for new albums. Set the subtype to collection for a regular album, collection_set for a folder that contains other albums, or project for a managed project." }, { "info": { "name": "Adobe Lightroom Delete an Album", "type": "http" }, "http": { "method": "DELETE", "url": "https://lr.adobe.io/v2/catalogs/:catalog_id/albums/:album_id", "headers": [ { "name": "X-Api-Key", "value": "" } ], "params": [ { "name": "catalog_id", "value": "", "type": "path", "description": "Unique identifier of the Lightroom catalog" }, { "name": "album_id", "value": "", "type": "path", "description": "Unique identifier of the album (UUID format)" } ] }, "docs": "Deletes the specified album from the catalog. Assets within the album are not deleted; they remain in the catalog." }, { "info": { "name": "Adobe Lightroom List Assets in an Album", "type": "http" }, "http": { "method": "GET", "url": "https://lr.adobe.io/v2/catalogs/:catalog_id/albums/:album_id/assets", "headers": [ { "name": "X-Api-Key", "value": "" } ], "params": [ { "name": "catalog_id", "value": "", "type": "path", "description": "Unique identifier of the Lightroom catalog" }, { "name": "album_id", "value": "", "type": "path", "description": "Unique identifier of the album" }, { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination" } ] }, "docs": "Retrieves a paginated list of assets contained within the specified album." }, { "info": { "name": "Adobe Lightroom Add Assets to an Album", "type": "http" }, "http": { "method": "PUT", "url": "https://lr.adobe.io/v2/catalogs/:catalog_id/albums/:album_id/assets", "headers": [ { "name": "X-Api-Key", "value": "" } ], "params": [ { "name": "catalog_id", "value": "", "type": "path", "description": "Unique identifier of the Lightroom catalog" }, { "name": "album_id", "value": "", "type": "path", "description": "Unique identifier of the album" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Adds one or more existing assets to the specified album. The assets must already exist in the catalog." } ] } ], "bundled": true }