Read (GET) Campaigns Associated with a Contact

Use this API to read all marketing campaigns associated with a contact in the Contacts hub.

To get all marketing campaigns associated with a specified contact:

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

For example, using cURL to submit the GET request, here is an example of how to get all marketing campaigns associated with a contact:

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

The call returns one JSON structure like the following for each marketing campaign associated with the specified contact in the Contacts hub. Double quotes in the returned JSON indicate that the field has no data.

{
        "ContactID": "TESTTESTS1234567890",
        "Name": "Design and Construction Best Practices Seminar",
        "CampaignMgrID": "00003",
        "CampaignMgr": "Grace Cohen, AIA",
        "Type": "Seminar",
        "Stage": "",
        "Status": "A",
        "CampaignID": "CAMPAIGNS1234567890",
        "CreateUser": "LoggedInUserWhoCreated",
        "CreateDate": "2007-07-24T10:03:43.910",
        "ModUser": "LoggedInUserWhoChanged",
        "ModDate": "2007-07-24T10:03:43.910",
        "LaunchDate": "2007-07-21T00:00:00.000"
    }