Qualify (POST) a Contact
Use this API to qualify an existing contact in the Contacts hub.
To qualify a contact:
Execute a POST command on the endpoint
{{url}}/contact/{{ContactID}}/qualify, specifying optional data in the request body.
For example, here is a request, using cURL, to qualify an existing contact with ID equal to TESTCONTACT1234567889.
curl --request POST \
--url 'https://{{url}}/contact/{{ContactID}}/qualify' \
--header 'authorization: Bearer {{oauth_token}}' \
--header 'content-type: application/json' \
--data '
{
"ClientID": "CLIENT78901234567890123456789012",
"WBS1": "PROJ11.00",
"CampaignID": "CAMPAIGNID1234567890123456789012"
}'
A successful call status of 200 returns "true" if the qualification status changed. Check the contact qualification status via GET {{url}}/contact/{{ContactID}}/qualifiedContact to see the new qualification status.
