Associated Contacts

Supported associated contact attributes:

AttributeTypeDescription
idnumberUnique identifier of the association.
contact_idnumberId of the contact.
deal_idnumberId of the deal.
created_atstringDate and time when the association was made in UTC (ISO8601 format).

Stream Associated Contact

Read the stream of associated contact events.

See the Firehose Overview article for more details on request and response formats and parameters.

Action

GET /v3/associated_contacts/stream

Examples

Read the stream of associated contact events

GET /v3/associated_contacts/stream?position=tailAccept: application/jsonAuthorization: Bearer $ACCESS_TOKENUser-Agent: $CLIENT_NAME
HTTP/1.1 200 OK   Content-Type: application/json
{  "items": [    {      "data": {        "created_at": "2019-06-07T13:33:24Z",        "id": 209262,        "contact_id": 9481116,        "deal_id": 4092575      },      "meta": {        "event_cause": "interaction",        "sequence": 1,        "event_id": "Bsq14VNiS0SlnR3ZfKW5hw",        "event_type": "created",        "type": "associated_contact",        "event_time": "2019-06-07T13:33:24Z"      }    }  ],  "meta": {    "links": {      "next": "https://api.getbase.com/v3/associated_contacts/stream?position=ZmlyZWhvc2UuYXNzb2NpYXRlZF9jb250YWN0LmJ5X2FjY291bnQsMSwzMQ=="    },    "position": "ZmlyZWhvc2UuYXNzb2NpYXRlZF9jb250YWN0LmJ5X2FjY291bnQsMSwzMQ==",    "top": false  }}