curl --request POST \
--url https://api.hubapi.com/integrations/v1/{application-id}/timeline/event-types/{event-type-id}/properties[
{
"name": "NumericProperty",
"label": "Numeric Property",
"propertyType": "Numeric"
},
{
"name": "company",
"propertyType": "String",
"label": "Company Name",
"objectProperty": "company"
},
{
"name": "size",
"propertyType": "Enumeration",
"label": "size",
"options": [
{
"value": "large",
"label": "Large"
},
{
"value": "medium",
"label": "Medium"
},
{
"value": "small",
"label": "Small"
}
]
}
]Create or update a group of timeline events. This can be used to backfill events when your integration is first installed, or to efficiently sync a large number of events occurring over a short period of time. See the Timeline Overview for more details about creating and working with events.
curl --request POST \
--url https://api.hubapi.com/integrations/v1/{application-id}/timeline/event-types/{event-type-id}/properties[
{
"name": "NumericProperty",
"label": "Numeric Property",
"propertyType": "Numeric"
},
{
"name": "company",
"propertyType": "String",
"label": "Company Name",
"objectProperty": "company"
},
{
"name": "size",
"propertyType": "Enumeration",
"label": "size",
"options": [
{
"value": "large",
"label": "Large"
},
{
"value": "medium",
"label": "Medium"
},
{
"value": "small",
"label": "Small"
}
]
}
]Scope requirements
Successful response - Create or update a group of timeline events
The response is of type object.