Documentation Index
Fetch the complete documentation index at: https://docs.qoder.com/llms.txt
Use this file to discover all available pages before exploring further.
DELETE /v1/skills/{skill_id}
Permanently deletes the specified skill. This operation is irreversible.
Path parameters
| Parameter | Type | Required | Description |
|---|
skill_id | string | Yes | Skill unique identifier |
| Header | Required | Description |
|---|
Authorization | Yes | Bearer $QODER_PAT |
No request body is required.
Example request
curl -X DELETE https://openapi.qoder.sh/api/v1/cloud/skills/skill_019e3bba474b73cfaf19eae9b5f5e66d \
-H "Authorization: Bearer $QODER_PAT"
Example response
HTTP 204 No Content
A successful delete returns HTTP 204 with no response body.
Errors
| HTTP | Type | Trigger |
|---|
| 401 | TOKEN_INVALID | Missing or invalid authentication token |
| 404 | not_found_error | Skill does not exist or has been deleted |
Notes
- Deletion is permanent and cannot be undone.
- Subsequent GET requests for a deleted skill return 404.
- All versions are deleted together.
See Errors for the full error envelope.