:/iffy
Ingest

Delete record

Remove a content record from the moderation system.

DELETE
/api/v1/ingest

Authorization

AuthorizationRequiredBearer <token>

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

In: header

Request Body

application/jsonRequired
clientIdRequiredstring

The unique identifier of the record to delete.

curl -X DELETE "https://api.iffy.com/api/v1/ingest" \
  -H "Authorization: Bearer <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "clientId": "post_123"
  }'

Record successfully deleted.

{
  "message": "Success"
}