curl --request POST \
--url https://api.example.com/api/albums/{album_id}/assets \
--header 'Content-Type: application/json' \
--data '
{
"asset_ids": [
"<string>"
]
}
'{
"added_assets": [
"<string>"
],
"duplicate_assets": [
"<string>"
]
}Adds one or more existing assets to the specified album. Assets must already be in the same library as the album (this tool does not upload new assets). Assets already in the album are silently skipped and returned separately as duplicate_assets. Idempotent: calling with the same IDs twice leaves the album in the same state.
curl --request POST \
--url https://api.example.com/api/albums/{album_id}/assets \
--header 'Content-Type: application/json' \
--data '
{
"asset_ids": [
"<string>"
]
}
'{
"added_assets": [
"<string>"
],
"duplicate_assets": [
"<string>"
]
}Documentation Index
Fetch the complete documentation index at: https://docs.gumnut.ai/llms.txt
Use this file to discover all available pages before exploring further.
Album ID (with album_ prefix) of the album to add the assets to.
Asset IDs (with asset_ prefix) to associate with the album. Get IDs from list_assets, search_assets, or list_album_assets.