Read (GET) Contact Qualification Status

Use this API to read the contact qualification status from the Contacts hub.

To get the contact with qualification status for the specified contact before or after changing the status:

Execute a GET command on the endpoint {{url}}/contact/{{ContactID}}/qualifiedContact

For example, using cURL to submit the GET request, here is an example of how to get the contact qualification status for the specified contact:

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

The call returns one JSON structure for the specified contact in the Contacts hub. Double quotes in the returned JSON indicate that the field has no data.

{
        "ContactID": "TESTTESTS1234567890",
        "LastName": "LastName",
        "FirstName": "FirstName",
        "QualifiedStatus": "sysQual",
        "PhoneFormat": "",
        "ClientID": "0000ABCDEFG",
        "ClientName": "ClientName & Associates, LLC",
        "OpportunityID": "TESTS0123456789123",
        "OpportunityName": "Name of the Opportunity",
        "CampaignID": "CAMPAIGNS123456789",
        "CampaignName": "Name of the Campaign",
        "StatusDate": "2017-03-30T17:50:31.000"
    }