Skip to main content

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

ParameterTypeRequiredDescription
skill_idstringYesSkill unique identifier

Headers

HeaderRequiredDescription
AuthorizationYesBearer $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

HTTPTypeTrigger
401TOKEN_INVALIDMissing or invalid authentication token
404not_found_errorSkill 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.