Passer au contenu principal
POST
/
integrators
/
timeline
/
v3
/
{appId}
/
event-templates
/
{eventTemplateId}
/
tokens
Add tokens to an existing template
curl --request POST \
  --url 'https://api.hubapi.com/integrators/timeline/v3/{appId}/event-templates/{eventTemplateId}/tokens?hapikey=' \
  --header 'Content-Type: application/json' \
  --data '
{
  "label": "<string>",
  "name": "<string>",
  "options": [
    {
      "label": "<string>",
      "value": "<string>"
    }
  ],
  "type": "date",
  "createdAt": "2023-11-07T05:31:56Z",
  "objectPropertyName": "<string>",
  "updatedAt": "2023-11-07T05:31:56Z"
}
'
{
  "label": "<string>",
  "name": "<string>",
  "options": [
    {
      "label": "<string>",
      "value": "<string>"
    }
  ],
  "type": "date",
  "createdAt": "2023-11-07T05:31:56Z",
  "objectPropertyName": "<string>",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Supported products

Autorisations

hapikey
string
query
requis

Paramètres de chemin

appId
integer<int32>
requis
eventTemplateId
string
requis

Corps

application/json
label
string
requis

Used for list segmentation and reporting.

name
string
requis

The name of the token referenced in the templates. This must be unique for the specific template. It may only contain alphanumeric characters, periods, dashes, or underscores (. - _).

options
object[]
requis

If type is enumeration, we should have a list of options to choose from.

type
enum<string>
requis

The data type of the token. You can currently choose from [string, number, date, enumeration].

Options disponibles:
date,
enumeration,
number,
string
createdAt
string<date-time>

The date and time that the Event Template Token was created, as an ISO 8601 timestamp. Will be null if the template was created before Feb 18th, 2020.

objectPropertyName
string

The name of the CRM object property. This will populate the CRM object property associated with the event. With enough of these, you can fully build CRM objects via the Timeline API.

updatedAt
string<date-time>

The date and time that the Event Template Token was last updated, as an ISO 8601 timestamp. Will be null if the template was created before Feb 18th, 2020.

Réponse

successful operation

label
string
requis

Used for list segmentation and reporting.

name
string
requis

The name of the token referenced in the templates. This must be unique for the specific template. It may only contain alphanumeric characters, periods, dashes, or underscores (. - _).

options
object[]
requis

If type is enumeration, we should have a list of options to choose from.

type
enum<string>
requis

The data type of the token. You can currently choose from [string, number, date, enumeration].

Options disponibles:
date,
enumeration,
number,
string
createdAt
string<date-time>

The date and time that the Event Template Token was created, as an ISO 8601 timestamp. Will be null if the template was created before Feb 18th, 2020.

objectPropertyName
string

The name of the CRM object property. This will populate the CRM object property associated with the event. With enough of these, you can fully build CRM objects via the Timeline API.

updatedAt
string<date-time>

The date and time that the Event Template Token was last updated, as an ISO 8601 timestamp. Will be null if the template was created before Feb 18th, 2020.

Last modified on April 2, 2026