Delete Skill Collection
DELETE
/api/v3/organizations/{organisation}/ai/skills/collections/{namespace}
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/skills/collections/example';const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request DELETE \ --url https://dashboard.quantcdn.io/api/v3/organizations/example/ai/skills/collections/example \ --header 'Authorization: Bearer <token>'Permanently deletes all skills in the specified namespace.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
namespace
required
string
Collection namespace
Responses
Section titled “Responses”Collection deleted successfully
Media typeapplication/json
object
success
boolean
message
string
Example
{ "success": true, "message": "Collection deleted successfully"}Access denied
Collection not found
Failed to delete collection
