Revert (POST) a Contact Back to a Lead

Use this API to revert an existing contact from a qualified status back to a lead in the Contacts hub.

To revert a contact back to a lead:

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

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

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

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