Ticket fields
Ticket fields allow to add
Retrieves a single summary settings by id for dynamic fields.
Authorizations
AuthorizationstringRequired
Provide the token that is returned upon login
Path parameters
workspaceIdstringRequired
summarySettingsIdstringRequired
Either "default" for the default summary settings, or a UUID for a specific one.
Responses
200
ok
application/json
404
Workspace or summary settings not found.
application/json
get
/workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId}GET /workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"default": true,
"name": "text",
"description": "text",
"fields": [
{
"id": "text",
"name": "text",
"description": "text",
"type": "single",
"values": [
{
"id": "text",
"value": "text",
"icon": "text",
"createdAt": "2025-11-27T02:50:14.364Z"
}
],
"settings": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"useLocalValues": true,
"allowedEntities": [
{
"entityType": "team",
"operation": "view",
"entityId": "text"
}
],
"createdAt": "2025-11-27T02:50:14.364Z",
"updatedAt": "2025-11-27T02:50:14.364Z"
}Updates a summary settings for dynamic fields
Authorizations
AuthorizationstringRequired
Provide the token that is returned upon login
Path parameters
workspaceIdstringRequired
summarySettingsIdstringRequired
Either "default" for the default summary settings, or a UUID for a specific one.
Body
defaultbooleanOptional
namestring · min: 1 · max: 255Optional
descriptionstringOptional
useLocalValuesbooleanOptional
Responses
200
updated
application/json
404
Workspace or summary settings not found.
application/json
422
Invalid request
application/json
patch
/workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId}PATCH /workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 384
{
"default": true,
"name": "text",
"description": "text",
"fields": [
{
"id": "text",
"name": "text",
"description": "text",
"type": "single",
"values": [
{
"id": "text",
"value": "text",
"icon": "text",
"ANY_ADDITIONAL_PROPERTY": "anything"
}
],
"items": "text",
"settings": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"useLocalValues": true,
"allowedEntities": [
{
"entityType": "team",
"operation": "view",
"entityId": "text"
}
]
}{
"id": "123e4567-e89b-12d3-a456-426614174000",
"default": true,
"name": "text",
"description": "text",
"fields": [
{
"id": "text",
"name": "text",
"description": "text",
"type": "single",
"values": [
{
"id": "text",
"value": "text",
"icon": "text",
"createdAt": "2025-11-27T02:50:14.364Z"
}
],
"settings": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"useLocalValues": true,
"allowedEntities": [
{
"entityType": "team",
"operation": "view",
"entityId": "text"
}
],
"createdAt": "2025-11-27T02:50:14.364Z",
"updatedAt": "2025-11-27T02:50:14.364Z"
}Deletes the specific summary value for dynamic fields
Authorizations
AuthorizationstringRequired
Provide the token that is returned upon login
Path parameters
workspaceIdstringRequired
summaryValueIdstringRequired
Responses
204
Deleted
404
Workspace or summary value not found
application/json
delete
/workspaces/{workspaceId}/dynamic-fields-summary-values/{summaryValueId}DELETE /workspaces/{workspaceId}/dynamic-fields-summary-values/{summaryValueId} HTTP/1.1
Host:
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
No content
Last updated
Was this helpful?

