Skip to main content
DELETE
https://api.unify.ai
/
v0
/
logs
/
plots
curl --request DELETE \
  --url 'https://api.unify.ai/v0/logs/plots' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{}
Delete all plots for a project, optionally filtered by context. Requires project:write permission on the target project.

Authorizations

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

Body

project_name
string
required
Name of the project
context
string | null
Optional context to filter by (deletes all if not specified)
curl --request DELETE \
  --url 'https://api.unify.ai/v0/logs/plots' \
  --header "Authorization: Bearer $UNIFY_KEY" \
  --header 'Content-Type: application/json' \
  --data '{}'
{}