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
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
true when something was actually deleted
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.