GET
/
integrations
/
v1
/
{application-id}
/
timeline
/
event
/
{event-type-id}
/
{event-id}
Get Timeline Event
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"
  }
]

Required Scopes

This API requires one of the following scopes:
  • timeline

Response

200 - application/json

Successful response - Get the data for a specific timeline event

The response is of type object.