Entergram Custom Fields API

Workspace chat custom columns, ticket custom columns, selectable options, and workspace-shared chat custom field values.

Operations 22

GET /v1/chats/{chat_id}/custom-fields Get workspace-shared custom field values for a chat #
PATCH /v1/chats/{chat_id}/custom-fields Patch workspace-shared custom field values for a chat #
GET /v1/custom-columns List workspace chat custom columns #
POST /v1/custom-columns Create a workspace chat custom column #
DELETE /v1/custom-columns/{column_id} Delete a workspace chat custom column #
GET /v1/custom-columns/{column_id} Get a workspace chat custom column #
PATCH /v1/custom-columns/{column_id} Update a workspace chat custom column #
GET /v1/custom-columns/{column_id}/options List workspace chat custom-column options #
POST /v1/custom-columns/{column_id}/options Create a workspace chat custom-column option #
DELETE /v1/custom-columns/{column_id}/options/{option_id} Delete a workspace chat custom-column option #
PATCH /v1/custom-columns/{column_id}/options/{option_id} Update a workspace chat custom-column option #
GET /v1/personal/chats/{chat_id}/custom-fields Get actor-scoped custom field values for a chat #
PATCH /v1/personal/chats/{chat_id}/custom-fields Patch actor-scoped custom field values for a chat #
GET /v1/ticket-custom-columns List workspace ticket custom columns #
POST /v1/ticket-custom-columns Create a workspace ticket custom column #
DELETE /v1/ticket-custom-columns/{column_id} Delete a workspace ticket custom column #
GET /v1/ticket-custom-columns/{column_id} Get a workspace ticket custom column #
PATCH /v1/ticket-custom-columns/{column_id} Update a workspace ticket custom column #
GET /v1/ticket-custom-columns/{column_id}/options List workspace ticket custom-column options #
POST /v1/ticket-custom-columns/{column_id}/options Create a workspace ticket custom-column option #
DELETE /v1/ticket-custom-columns/{column_id}/options/{option_id} Delete a workspace ticket custom-column option #
PATCH /v1/ticket-custom-columns/{column_id}/options/{option_id} Update a workspace ticket custom-column option #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/entergram-custom-fields-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

entergram-custom-fields-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  contact:
    email: hello@entergram.com
    name: Entergram
  description: Secure, workspace-scoped API for Entergram PRO. Use API keys created in Settings > Developers to access workspace metadata, accounts, contacts, groups, chats, custom fields, and tickets through a stable, documented contract.
  title: Entergram Public Custom Fields API
  version: v1
security:
- ApiKeyAuth: []
tags:
- description: Workspace chat custom columns, ticket custom columns, selectable options, and workspace-shared chat custom field values.
  name: Custom Fields
paths:
  /v1/chats/{chat_id}/custom-fields:
    get:
      description: Returns workspace-shared custom field values merged by Telegram chat id across all workspace chat copies.
      operationId: get-chat-custom-fields
      parameters:
      - description: Canonical Telegram chat identifier.
        in: path
        name: chat_id
        required: true
        schema:
          description: Canonical Telegram chat identifier.
          examples:
          - '-1000001234567'
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatCustomFieldsEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Get workspace-shared custom field values for a chat
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.read
    patch:
      description: Applies a partial patch to workspace-shared chat custom fields. `null` and empty strings delete field values across all workspace chat copies for the Telegram chat id.
      operationId: patch-chat-custom-fields
      parameters:
      - description: Canonical Telegram chat identifier.
        in: path
        name: chat_id
        required: true
        schema:
          description: Canonical Telegram chat identifier.
          examples:
          - '-1000001234567'
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchChatCustomFieldsBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatCustomFieldsEnvelope'
          description: OK
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Patch workspace-shared custom field values for a chat
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
  /v1/custom-columns:
    get:
      description: Returns workspace-scoped CRM custom columns used for chat metadata, including option definitions and default values.
      operationId: list-custom-columns
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnsEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: List workspace chat custom columns
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.read
    post:
      description: Creates a workspace-scoped CRM custom column. Requires the write scope and an authenticated workspace owner/admin or a member granted Manage custom columns (canManageCustomColumns). API/OAuth scopes alone do not grant schema permission.
      operationId: create-custom-column
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateColumnBody'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnEnvelope'
          description: Created
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '409':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Conflict
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Create a workspace chat custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
  /v1/custom-columns/{column_id}:
    delete:
      description: Deletes the workspace chat custom-column definition and its workspace-scoped field values.
      operationId: delete-custom-column
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletedEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Delete a workspace chat custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
    get:
      description: Returns one workspace chat custom-column definition with its selectable options.
      operationId: get-custom-column
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Get a workspace chat custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.read
    patch:
      description: Applies a partial update to a workspace chat custom-column definition. When `options` is provided it replaces the full option set.
      operationId: update-custom-column
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateColumnBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnEnvelope'
          description: OK
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '409':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Conflict
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Update a workspace chat custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
  /v1/custom-columns/{column_id}/options:
    get:
      description: Returns selectable options for a workspace chat custom column.
      operationId: list-custom-column-options
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OptionsEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: List workspace chat custom-column options
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.read
    post:
      description: Creates a selectable option for a workspace chat custom column.
      operationId: create-custom-column-option
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateOptionBody'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OptionEnvelope'
          description: Created
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Create a workspace chat custom-column option
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
  /v1/custom-columns/{column_id}/options/{option_id}:
    delete:
      description: Deletes a selectable option from a workspace chat custom column.
      operationId: delete-custom-column-option
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      - description: Option identifier.
        in: path
        name: option_id
        required: true
        schema:
          description: Option identifier.
          examples:
          - field_option_demo_123
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletedEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Delete a workspace chat custom-column option
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
    patch:
      description: Updates a selectable option for a workspace chat custom column.
      operationId: update-custom-column-option
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      - description: Option identifier.
        in: path
        name: option_id
        required: true
        schema:
          description: Option identifier.
          examples:
          - field_option_demo_123
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateOptionBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/OptionEnvelope'
          description: OK
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Update a workspace chat custom-column option
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
  /v1/personal/chats/{chat_id}/custom-fields:
    get:
      description: Returns custom field values for the caller's own workspace chat copies of the Telegram chat id.
      operationId: get-personal-chat-custom-fields
      parameters:
      - description: Canonical Telegram chat identifier.
        in: path
        name: chat_id
        required: true
        schema:
          description: Canonical Telegram chat identifier.
          examples:
          - '-1000001234567'
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatCustomFieldsEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Get actor-scoped custom field values for a chat
      tags:
      - Custom Fields
      x-required-scopes:
      - chat_custom_fields.read
    patch:
      description: Applies a partial patch to custom field values on the caller's own workspace chat copies of the Telegram chat id.
      operationId: patch-personal-chat-custom-fields
      parameters:
      - description: Canonical Telegram chat identifier.
        in: path
        name: chat_id
        required: true
        schema:
          description: Canonical Telegram chat identifier.
          examples:
          - '-1000001234567'
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/PatchChatCustomFieldsBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ChatCustomFieldsEnvelope'
          description: OK
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Patch actor-scoped custom field values for a chat
      tags:
      - Custom Fields
      x-required-scopes:
      - chat_custom_fields.write
  /v1/ticket-custom-columns:
    get:
      description: Returns workspace-scoped ticket custom-column definitions including option metadata.
      operationId: list-ticket-custom-columns
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnsEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: List workspace ticket custom columns
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.read
    post:
      description: Creates a workspace ticket custom-column definition. Ticket schema must be enabled for the workspace.
      operationId: create-ticket-custom-column
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateColumnBody'
        required: true
      responses:
        '201':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnEnvelope'
          description: Created
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '409':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Conflict
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Create a workspace ticket custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
  /v1/ticket-custom-columns/{column_id}:
    delete:
      description: Deletes a workspace ticket custom-column definition and its ticket field values.
      operationId: delete-ticket-custom-column
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/DeletedEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Delete a workspace ticket custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.write
    get:
      description: Returns one workspace ticket custom-column definition with its selectable options.
      operationId: get-ticket-custom-column
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnEnvelope'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Forbidden
        '404':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Not Found
        '422':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Unprocessable Entity
        '500':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Internal Server Error
      summary: Get a workspace ticket custom column
      tags:
      - Custom Fields
      x-required-scopes:
      - custom_fields.read
    patch:
      description: Applies a partial update to a workspace ticket custom-column definition. When `options` is provided it replaces the full option set.
      operationId: update-ticket-custom-column
      parameters:
      - description: Workspace custom-column identifier.
        in: path
        name: column_id
        required: true
        schema:
          description: Workspace custom-column identifier.
          examples:
          - column_demo_123
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateColumnBody'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ColumnEnvelope'
          description: OK
        '400':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ErrorModel'
          description: Bad Request
        '401':
          content:

# --- truncated at 32 KB (51 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/entergram/refs/heads/main/openapi/entergram-custom-fields-api-openapi.yml