Skip to main content
DELETE
/
api
/
selected-skills
/
{selected_skill_id}
Delete Selected Skill
curl --request DELETE \
  --url https://api.example.com/v1/api/selected-skills/{selected_skill_id} \
  --header 'x-api-key: <api-key>'
{
  "success": true,
  "message": "Selected skill deleted successfully"
}
Deletes a selected skill record. Once it’s gone, it’s gone — there’s no soft delete or recovery here. No authentication needed.

Path Parameters

selected_skill_id
string
required
The UUID of the selection record you want to remove.This is not the skill_id. It’s the selected_skill_id that was returned when you called POST /api/selected-skills. If you don’t have it, fetch the user’s selected skills first to find it.

Response

success
boolean
true when something was actually deleted
message
string
Confirmation or error message

Examples

curl -X DELETE \
  "http://localhost:5000/api/selected-skills/a1b2c3d4-e5f6-7890-abcd-ef1234567890"
{
  "success": true,
  "message": "Selected skill deleted successfully"
}

Make sure you’re using selected_skill_id, not skill_id.These are two different things. skill_id identifies a skill in the catalogue. selected_skill_id identifies the record of a specific user having selected that skill. It’s the UUID in the data object from the POST response.If you pass a skill_id here by accident, you’ll just get a 404.