BrandKarma
bulk_update_content_status
Batch status change for multiple content items (e.g. publish or archive several at once). Fail-soft: items that no longer exist are reported in 'errors' and the rest still succeed. If you see 'not found (deleted or never existed)' errors, the IDs are likely from a stale list_content_items response — refetch the list and retry.
Remote Account required revuo:brandkarma-4084
Remote (network-hosted) · Requires an account with the vendor · OAuth
Other tools also called bulk_update_content_status?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"contentItemIds": {
"description": "Content item ID (ObjectId) strings.",
"type": "array",
"items": {
"type": "string"
}
},
"status": {
"description": "New status: Draft, ReadyForReview, Published, Archived",
"type": "string"
}
},
"required": [
"contentItemIds",
"status"
]
}