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

Deletes a project from your account.

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.

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