Bulk delete tags
User API key (Bearer scp_u_...). Create in Platform > API Keys.
In: header
Request Body
application/json
Array of tags IDs to delete
Response Body
application/json
curl -X POST "https://loading/api/v1/tags/bulk-delete" \ -H "Content-Type: application/json" \ -d '[ "497f6eca-6276-4993-bfeb-53cbbbba6f08" ]'{
"meta": {
"api_version": 1,
"server_version": "0.13.5"
},
"success": true,
"data": {
"deleted_count": 0,
"requested_count": 0
},
"error": "string"
}Bulk add a tag to multiple entities
Adds a single tag to multiple entities of the same type. This is useful for batch tagging operations. ### Validation - Entity type must be taggable (Host, Service, Subnet, Group, Network, Discovery, Daemon, DaemonApiKey, UserApiKey) - Tag must exist and belong to your organization - Entities that already have the tag are silently skipped
Bulk remove a tag from multiple entities
Removes a single tag from multiple entities of the same type. ### Validation - Entity type must be taggable (Host, Service, Subnet, Group, Network, Discovery, Daemon, DaemonApiKey, UserApiKey) - Entities that don't have the tag are silently skipped