Skip to main content
DELETE
/
v1
/
widgets
/
bulk
Bulk Delete Widgets
curl --request DELETE \
  --url https://api.oviond.com/v1/widgets/bulk \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "ids": [
    "widget1",
    "widget2"
  ]
}
'
{
  "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:
["widget1", "widget2"]

Response

200 - application/json

Widgets deleted

success
enum<boolean>
required
Available options:
true