Skip to content

Remove Project Instructions

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

Drop every instruction block this project holds. 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 rules back by pulling again.

project_id
required
Project Id
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"
}
]
}