POST
/
contacts
/
purge
Delete contact data
curl --request POST \
  --url https://insights.reforge.com/api/v1/contacts/purge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "id": "<string>",
  "email": "<string>",
  "source": "<string>"
}'
{
  "success": true
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token. Admin-level permissions required

Body

application/json

Response

200 - application/json

The contact purge was initiated successfully

The response is of type object.