Delete Skill
DELETE
/api/v3/organizations/{organisation}/ai/skills/{skillId}
const url = 'https://dashboard.quantcdn.io/api/v3/organizations/example/ai/skills/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/example \ --header 'Authorization: Bearer <token>'Permanently deletes a skill. This will also remove it from any agents that have it assigned.
Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”organisation
required
string
The organisation ID
skillId
required
string
The skill ID
Responses
Section titled “Responses”Skill deleted successfully
Media typeapplication/json
object
success
boolean
message
string
Example
{ "success": true, "message": "Skill deleted successfully"}Access denied
Skill not found
Failed to delete skill
