Ticket fields
Ticket fields allow to add
Retrieves a single summary settings by id for dynamic fields.
Authorizations
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
GET /workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId} HTTP/1.1
Host:
Authorization: Bearer jwt
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-07-01T17:48:50.445Z"
}
],
"settings": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"useLocalValues": true,
"allowedEntities": [
{
"entityType": "team",
"operation": "view",
"entityId": "text"
}
],
"createdAt": "2025-07-01T17:48:50.445Z",
"updatedAt": "2025-07-01T17:48:50.445Z"
}
Updates a summary settings for dynamic fields
Authorizations
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
PATCH /workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId} HTTP/1.1
Host:
Authorization: Bearer jwt
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-07-01T17:48:50.445Z"
}
],
"settings": {
"ANY_ADDITIONAL_PROPERTY": "anything"
}
}
],
"useLocalValues": true,
"allowedEntities": [
{
"entityType": "team",
"operation": "view",
"entityId": "text"
}
],
"createdAt": "2025-07-01T17:48:50.445Z",
"updatedAt": "2025-07-01T17:48:50.445Z"
}
Deletes the specific summary settings for dynamic fields
Authorizations
Path parameters
workspaceIdstringRequired
summarySettingsIdstringRequired
Either "default" for the default summary settings, or a UUID for a specific one.
Responses
204
Deleted
404
Workspace or summary settings not found
application/json
delete
DELETE /workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId} HTTP/1.1
Host:
Authorization: Bearer jwt
Accept: */*
No content
Last updated
Was this helpful?