Ingest
Delete record
Remove a content record from the moderation system.
Authorization
Authorization
RequiredBearer <token>Bearer authentication header of the form Bearer , where is your auth token.
In: header
Request Body
application/json
RequiredclientId
RequiredstringThe 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"
}