curl --request DELETE \
--url https://api.example.com/api/albums/{album_id}/assets \
--header 'Content-Type: application/json' \
--data '
{
"asset_ids": [
"<string>"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}Removes one or more assets from a specific album. Note: This does not delete the assets themselves.
curl --request DELETE \
--url https://api.example.com/api/albums/{album_id}/assets \
--header 'Content-Type: application/json' \
--data '
{
"asset_ids": [
"<string>"
]
}
'{
"detail": [
{
"loc": [
"<string>"
],
"msg": "<string>",
"type": "<string>"
}
]
}