Ticket fields

Ticket fields allow to add

Get summary settings for dynamic fields

get

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
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"
}

Update summary settings for dynamic fields

patch

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
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"
}

Delete summary settings for dynamic fields

delete

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
delete
DELETE /workspaces/{workspaceId}/dynamic-fields-summary-settings/{summarySettingsId} HTTP/1.1
Host: 
Authorization: Bearer jwt
Accept: */*

No content

Last updated

Was this helpful?