Disqualify (POST) a Contact

Use this API to disqualify an existing contact in the Contacts hub.

To disqualify a contact:

Execute a POST command on the endpoint {{url}}/contact/{{ContactID}}/disqualify.

For example, here is a request, using cURL, to disqualify an existing contact with ID equal to TESTCONTACT1234567889.

curl --request POST \
  --url 'https://{{url}}/contact/{{ContactID}}/disqualify' \
  --header 'authorization: Bearer {{oauth_token}}' \
  --header 'content-type: application/json' \

A successful call status of 200 returns "true" if the qualification status changed from "sysQual" to "sysDisqual". Check the contact qualification status via GET {{url}}/contact/{{ContactID}}/qualifiedContact to see the new qualification status.