URL parameters
The ID of the Catalog relation you want to create a record for.
Headers
Bearer $TOKEN
application/json
Body parameters
Attributes for the Catalog record.
Each item in the array describes the values for a single attribute defined on the related Catalog relation. Every item has two fields: attribute
and values
.
Object describing the target attribute. Either id
or name
must be provided for matching the Catalog attribute.
ID of the target Catalog attribute.
Name of the target Catalog attribute.
Array of objects where each object describes a single value for the target attribute (Attributes can have multiple values).
Value types can be grouped into main categories:
- Scalar: String
- Reference: User
, Team
, Policy
, Schedule
, SlackIntegration
, LinearIntegration
, JiraIntegration
, MicrosoftTeamsWebhook
, ZapierWebhook
, NativeWebhook
, PagerDutyWebhook
The value of a Scalar type is defined using the value
field.
The value of a Reference type is defined using one of the following fields:
- item_id
- great choice when you know the ID of the target item.
- email
- your go to choice when you're referencing users.
- name
- can be used to reference other items like teams, policies, etc.
The reference types require the presence of at least one of the three fields: item_id
, name
, email
.
Type of the value. Valid options: String
, User
, Team
, Policy
, Schedule
, SlackIntegration
, LinearIntegration
, JiraIntegration
, MicrosoftTeamsWebhook
, ZapierWebhook
, NativeWebhook
, PagerDutyWebhook
Value when type
is String
. Required when type
is String
.
ID of the referenced item when type is different than String
.
Name of the referenced item when type
is different than String
.
Email of the referenced user when type
is User
.