Skip to main content
Skills

Delete a Skill

Deletes a Skill that is not referenced by a Template.

Path

DELETE /api/v1/forward/skills/{id}

Request headers

HeaderRequiredDescription
AuthorizationYesBearer <PAT or SAT>
Checks Template references before deletion. If unreferenced, the Skill is deleted and no longer appears in default listings.

Path parameters

ParameterTypeRequiredDescription
idstringYesSkill ID.

Example request

curl -X DELETE "https://api.qoder.com/api/v1/forward/skills/skill_xxx" \
  -H "Authorization: Bearer $QODER_ACCESS_TOKEN"

Example response

{
  "id": "skill_xxx",
  "type": "skill_deleted",
  "deleted": true
}

Response fields

FieldTypeDescription
idstringID of the deleted resource.
typestringDeletion result type.
deletedbooleanWhether the resource was deleted.

Errors

HTTPTypeTrigger
400invalid_request_errorThe request body, path parameters, pagination parameters, or multipart fields are invalid.
401authentication_errorThe authentication token is missing or invalid.
403permission_errorThe caller cannot access this Skill.
404not_found_errorThe Skill does not exist, is not registered, or is not visible.
409conflict_errorThe idempotency key conflicts, create recovery requires manual intervention, or the resource is still referenced during deletion.
429rate_limit_errorUpload capacity is insufficient.
500/502/503api_errorForward or a dependent service failed.
Delete a Skill - Qoder