DELETE
/
v0
/
project
/
{project_name}
/
logs
curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/proj/a/logs' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "All logs in project deleted successfully"
}

Deletes all logs in a project.

Authorizations

Authorization
string
required

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

Path Parameters

project_name
string
required

Project name, may contain slashes

curl --request DELETE \
  --url 'https://api.unify.ai/v0/project/proj/a/logs' \
  --header "Authorization: Bearer $UNIFY_KEY"
{
    "info": "All logs in project deleted successfully"
}