Skip to content

Remove Project Skill

DELETE
/api/v1/projects/{project_id}/skills/{skill}
curl --request DELETE \
--url https://aura-api-eu.strangeworks.com/api/v1/projects/example/skills/example \
--header 'Authorization: Bearer <token>'

Remove a skill from this project, whichever scope holds it. Idempotent.

Both scopes, because both are the project’s. The deployment keeps its own copy under a prefix this route cannot reach, so siblings and future projects are unaffected — and this project gets the skill back by pulling again.

project_id
required
Project Id
string
skill
required
Skill
string

Successful Response

Validation Error

Media typeapplication/json
HTTPValidationError
object
detail
Detail
Array<object>
ValidationError
object
ctx
Context
object
input
Input
loc
required
Location
Array
msg
required
Message
string
type
required
Error Type
string
Examplegenerated
{
"detail": [
{
"ctx": {},
"input": "example",
"loc": [
"example"
],
"msg": "example",
"type": "example"
}
]
}