Skip to main content
POST
/
integrations
/
v1
/
{application-id}
/
timeline
/
event-types
/
{event-type-id}
/
properties
Create Property for Timeline Event Type
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"
      }
    ]
  }
]

Response

200 - application/json

Successful response - Create or update a group of timeline events

The response is of type object.

Last modified on December 12, 2025