curl --request GET \
--url https://api.hubapi.com/integrations/v1/{application-id}/timeline/event/{event-type-id}/{event-id}[
{
"id": "3",
"applicationId": 123456,
"portalId": 12345678,
"eventTypeId": 123,
"objectType": "CONTACT",
"objectId": 1,
"extraData": null,
"timestamp": 1416852689573
},
{
"name": "John Doe",
"weather": "Cloudy"
}
]Get the data for a specific timeline event. All data that the event has will be returned, including the optional fields that were set for you.
curl --request GET \
--url https://api.hubapi.com/integrations/v1/{application-id}/timeline/event/{event-type-id}/{event-id}[
{
"id": "3",
"applicationId": 123456,
"portalId": 12345678,
"eventTypeId": 123,
"objectType": "CONTACT",
"objectId": 1,
"extraData": null,
"timestamp": 1416852689573
},
{
"name": "John Doe",
"weather": "Cloudy"
}
]Scope requirements
Successful response - Get the data for a specific timeline event
The response is of type object.
Was this page helpful?