DELETE
/
v0
/
project
/
{project_name}
/
contexts
/
{context_name}
curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/my_project/contexts/my_context' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "Context deleted successfully!"
}

Deletes a context from a project. This will not delete the logs or artifacts within the context, but will remove their association with this context.

Authorizations

Authorization
string
required

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

Path Parameters

project_name
string
required

Name of the project to create context in.

context_name
string
required

Name of the context to delete.

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