Team workspaces
Delete a team collection
DELETE
/api/v1/workspaces/{id}/collections/{collectionId}Delete a shared collection inside a team workspace.
Path params
idrequiredstring
Team workspace id.
collectionIdrequiredstring
Collection id.
Headers
Authorizationrequiredstring
Bearer header containing an active API key.
Example:Bearer llms_api_keyConstraints: Create it from Profile > API keys. Keep it server side.Request examples
cURL
curl "https://llm-skills.com/api/v1/workspaces/collection_id/collections/team_collection_id"
-X DELETE
-H "Authorization: Bearer llms_api_key"Responses and errors
200SuccessDeletion confirmed.
JSON
{
"data": { "deleted": true }
}401Missing or invalid keyAuthorization header missing, malformed or revoked key.
JSON
{
"error": "Invalid or revoked API key"
}403Unauthorized accessThe current plan or permissions do not allow this route.
JSON
{
"error": "API access is available with a plan that includes API access"
}