Skip to main content
PUT
/
integrations
/
v1
/
{application-id}
/
timeline
/
event-types
/
{event-type-id}
/
properties
Update Property for Timeline Event Type
curl --request PUT \
  --url https://api.hubapi.com/integrations/v1/{application-id}/timeline/event-types/{event-type-id}/properties
[
  {
    "id": 3,
    "name": "size",
    "propertyType": "Enumeration",
    "label": "Size"
  },
  {
    "id": 3,
    "name": "size",
    "propertyType": "Enumeration",
    "label": "Size",
    "options": [
      {
        "value": "xlarge",
        "label": "Extra Large"
      },
      {
        "value": "large",
        "label": "Large"
      },
      {
        "value": "medium",
        "label": "Medium"
      },
      {
        "value": "small",
        "label": "Small"
      }
    ]
  }
]

Response

200 - application/json

Successful response - Update an existing event type

The response is of type object.

Last modified on December 12, 2025