DELETE
/
v0
/
project
/
{name}
/
contexts
curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/test-project/contexts' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Project contexts and logs deleted successfully!"
}

Deletes all contexts and their associated logs from a project. The project’s interfaces remain untouched.

Authorizations

Authorization
string
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

name
string
required

Name of the project to delete contexts from.

curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/test-project/contexts' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Project contexts and logs deleted successfully!"
}