Skip to main content
DELETE
/
v1
/
projects
/
bulk
Bulk Delete Projects
curl --request DELETE \
  --url https://api.oviond.com/v1/projects/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "proj123",
    "proj456"
  ]
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
ids
string[]
required
Minimum array length: 1
Example:
["proj123", "proj456"]

Response

Projects deleted

success
enum<boolean>
required
Available options:
true