DELETE
/
actions
/
{id}
curl --request DELETE \
  --url https://moderationapi.com/api/v1/actions/{id} \
  --header 'Authorization: Bearer <token>'
{
  "deleted": true,
  "id": "60c9e1c0e4e7e1001c7a0e1d"
}

Authorizations

Authorization
string
headerrequired

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

Path Parameters

id
string
required

The ID of the action to delete.

Response

200 - application/json
deleted
boolean
required

Whether the action was deleted.

id
string
required

The ID of the action.

Was this page helpful?