Associated Contacts
Supported associated contact attributes:
Attribute | Type | Description |
---|---|---|
id | number | Unique identifier of the association. |
contact_id | number | Id of the contact. |
deal_id | number | Id of the deal. |
created_at | string | Date 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=tail
Accept: application/json
Authorization: Bearer $ACCESS_TOKEN
User-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
}
}