Skip to main content
POST
/
contacts
/
purge
curl --request POST \
  --url https://insights.reforge.com/api/v1/contacts/purge \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "id": "user123",
  "source": "salesforce"
}
'
{
  "success": true
}

Authorizations

Authorization
string
header
required

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

Body

application/json
  • Option 1
  • Option 2
id
string | null
required

External contact ID

email
string | null

Contact email address

source
string | null

Source system to limit search to

Response

The contact purge was initiated successfully

success
boolean