Unified.to · Capability

Unified.to API — ticketing

Unified.to API — ticketing. 24 operations. Lead operation: List All Categories. Self-contained Naftiko capability covering one Unified To business surface.

Run with Naftiko Unified Toticketing

What You Can Do

GET
Listticketingcategories — List All Categories
/v1/ticketing/{connection-id}/category
POST
Createticketingcategory — Create a Category
/v1/ticketing/{connection-id}/category
DELETE
Removeticketingcategory — Remove a Category
/v1/ticketing/{connection-id}/category/{id}
GET
Getticketingcategory — Retrieve a Category
/v1/ticketing/{connection-id}/category/{id}
PATCH
Patchticketingcategory — Update a Category
/v1/ticketing/{connection-id}/category/{id}
PUT
Updateticketingcategory — Update a Category
/v1/ticketing/{connection-id}/category/{id}
GET
Listticketingcustomers — List All Customers
/v1/ticketing/{connection-id}/customer
POST
Createticketingcustomer — Create a Customer
/v1/ticketing/{connection-id}/customer
DELETE
Removeticketingcustomer — Remove a Customer
/v1/ticketing/{connection-id}/customer/{id}
GET
Getticketingcustomer — Retrieve a Customer
/v1/ticketing/{connection-id}/customer/{id}
PATCH
Patchticketingcustomer — Update a Customer
/v1/ticketing/{connection-id}/customer/{id}
PUT
Updateticketingcustomer — Update a Customer
/v1/ticketing/{connection-id}/customer/{id}
GET
Listticketingnotes — List All Notes
/v1/ticketing/{connection-id}/note
POST
Createticketingnote — Create a Note
/v1/ticketing/{connection-id}/note
DELETE
Removeticketingnote — Remove a Note
/v1/ticketing/{connection-id}/note/{id}
GET
Getticketingnote — Retrieve a Note
/v1/ticketing/{connection-id}/note/{id}
PATCH
Patchticketingnote — Update a Note
/v1/ticketing/{connection-id}/note/{id}
PUT
Updateticketingnote — Update a Note
/v1/ticketing/{connection-id}/note/{id}
GET
Listticketingtickets — List All Tickets
/v1/ticketing/{connection-id}/ticket
POST
Createticketingticket — Create a Ticket
/v1/ticketing/{connection-id}/ticket
DELETE
Removeticketingticket — Remove a Ticket
/v1/ticketing/{connection-id}/ticket/{id}
GET
Getticketingticket — Retrieve a Ticket
/v1/ticketing/{connection-id}/ticket/{id}
PATCH
Patchticketingticket — Update a Ticket
/v1/ticketing/{connection-id}/ticket/{id}
PUT
Updateticketingticket — Update a Ticket
/v1/ticketing/{connection-id}/ticket/{id}

MCP Tools

list-all-categories

List All Categories

read-only idempotent
create-category

Create a Category

remove-category

Remove a Category

idempotent
retrieve-category

Retrieve a Category

read-only idempotent
update-category

Update a Category

idempotent
update-category-2

Update a Category

idempotent
list-all-customers

List All Customers

read-only idempotent
create-customer

Create a Customer

remove-customer

Remove a Customer

idempotent
retrieve-customer

Retrieve a Customer

read-only idempotent
update-customer

Update a Customer

idempotent
update-customer-2

Update a Customer

idempotent
list-all-notes

List All Notes

read-only idempotent
create-note

Create a Note

remove-note

Remove a Note

idempotent
retrieve-note

Retrieve a Note

read-only idempotent
update-note

Update a Note

idempotent
update-note-2

Update a Note

idempotent
list-all-tickets

List All Tickets

read-only idempotent
create-ticket

Create a Ticket

remove-ticket

Remove a Ticket

idempotent
retrieve-ticket

Retrieve a Ticket

read-only idempotent
update-ticket

Update a Ticket

idempotent
update-ticket-2

Update a Ticket

idempotent

Capability Spec

full-ticketing.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Unified.to  API — ticketing
  description: 'Unified.to  API — ticketing. 24 operations. Lead operation: List All Categories. Self-contained Naftiko capability
    covering one Unified To business surface.'
  tags:
  - Unified To
  - ticketing
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UNIFIED_TO_API_KEY: UNIFIED_TO_API_KEY
capability:
  consumes:
  - type: http
    namespace: full-ticketing
    baseUri: https://api.unified.to
    description: Unified.to  API — ticketing business capability. Self-contained, no shared references.
    resources:
    - name: ticketing-connection_id-category
      path: /ticketing/{connection_id}/category
      operations:
      - name: listticketingcategories
        method: GET
        description: List All Categories
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: number
        - name: offset
          in: query
          type: number
        - name: updated_gte
          in: query
          type: string
          description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ
            format)
        - name: sort
          in: query
          type: string
        - name: order
          in: query
          type: string
        - name: query
          in: query
          type: string
          description: Query string to search. eg. email address or name
        - name: parent_id
          in: query
          type: string
          description: The parent ID to filter by
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
      - name: createticketingcategory
        method: POST
        description: Create a Category
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-category-id
      path: /ticketing/{connection_id}/category/{id}
      operations:
      - name: removeticketingcategory
        method: DELETE
        description: Remove a Category
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Category
          required: true
      - name: getticketingcategory
        method: GET
        description: Retrieve a Category
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Category
          required: true
      - name: patchticketingcategory
        method: PATCH
        description: Update a Category
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Category
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateticketingcategory
        method: PUT
        description: Update a Category
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Category
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-customer
      path: /ticketing/{connection_id}/customer
      operations:
      - name: listticketingcustomers
        method: GET
        description: List All Customers
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: number
        - name: offset
          in: query
          type: number
        - name: updated_gte
          in: query
          type: string
          description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ
            format)
        - name: sort
          in: query
          type: string
        - name: order
          in: query
          type: string
        - name: query
          in: query
          type: string
          description: Query string to search. eg. email address or name
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
      - name: createticketingcustomer
        method: POST
        description: Create a Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-customer-id
      path: /ticketing/{connection_id}/customer/{id}
      operations:
      - name: removeticketingcustomer
        method: DELETE
        description: Remove a Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Customer
          required: true
      - name: getticketingcustomer
        method: GET
        description: Retrieve a Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Customer
          required: true
      - name: patchticketingcustomer
        method: PATCH
        description: Update a Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Customer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateticketingcustomer
        method: PUT
        description: Update a Customer
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Customer
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-note
      path: /ticketing/{connection_id}/note
      operations:
      - name: listticketingnotes
        method: GET
        description: List All Notes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: number
        - name: offset
          in: query
          type: number
        - name: updated_gte
          in: query
          type: string
          description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ
            format)
        - name: sort
          in: query
          type: string
        - name: order
          in: query
          type: string
        - name: query
          in: query
          type: string
          description: Query string to search. eg. email address or name
        - name: ticket_id
          in: query
          type: string
          description: The ticket ID to filter by
        - name: customer_id
          in: query
          type: string
          description: The customer ID to filter by
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
      - name: createticketingnote
        method: POST
        description: Create a Note
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-note-id
      path: /ticketing/{connection_id}/note/{id}
      operations:
      - name: removeticketingnote
        method: DELETE
        description: Remove a Note
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Note
          required: true
      - name: getticketingnote
        method: GET
        description: Retrieve a Note
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Note
          required: true
      - name: patchticketingnote
        method: PATCH
        description: Update a Note
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Note
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateticketingnote
        method: PUT
        description: Update a Note
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Note
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-ticket
      path: /ticketing/{connection_id}/ticket
      operations:
      - name: listticketingtickets
        method: GET
        description: List All Tickets
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: limit
          in: query
          type: number
        - name: offset
          in: query
          type: number
        - name: updated_gte
          in: query
          type: string
          description: Return only results whose updated date is equal or greater to this value (ISO-8601 / YYYY-MM-DDTHH:MM:SSZ
            format)
        - name: sort
          in: query
          type: string
        - name: order
          in: query
          type: string
        - name: query
          in: query
          type: string
          description: Query string to search. eg. email address or name
        - name: customer_id
          in: query
          type: string
          description: The customer ID to filter by
        - name: user_id
          in: query
          type: string
          description: The user/employee ID to filter by (reference to HrisEmployee)
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
      - name: createticketingticket
        method: POST
        description: Create a Ticket
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: ticketing-connection_id-ticket-id
      path: /ticketing/{connection_id}/ticket/{id}
      operations:
      - name: removeticketingticket
        method: DELETE
        description: Remove a Ticket
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Ticket
          required: true
      - name: getticketingticket
        method: GET
        description: Retrieve a Ticket
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Ticket
          required: true
      - name: patchticketingticket
        method: PATCH
        description: Update a Ticket
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Ticket
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: updateticketingticket
        method: PUT
        description: Update a Ticket
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: fields
          in: query
          type: array
          description: Fields to return
        - name: raw
          in: query
          type: string
          description: 'Raw parameters to include in the 3rd-party request. Encoded as a URL component. eg. raw parameters:
            foo=bar&zoo=bar -> raw=foo%3Dbar%26zoo%3Dbar'
        - name: connection_id
          in: path
          type: string
          description: ID of the connection
          required: true
        - name: id
          in: path
          type: string
          description: ID of the Ticket
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: authorization
      value: '{{env.UNIFIED_TO_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: full-ticketing-rest
    port: 8080
    description: REST adapter for Unified.to  API — ticketing. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/ticketing/{connection-id}/category
      name: ticketing-connection-id-category
      description: REST surface for ticketing-connection_id-category.
      operations:
      - method: GET
        name: listticketingcategories
        description: List All Categories
        call: full-ticketing.listticketingcategories
        with:
          limit: rest.limit
          offset: rest.offset
          updated_gte: rest.updated_gte
          sort: rest.sort
          order: rest.order
          query: rest.query
          parent_id: rest.parent_id
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createticketingcategory
        description: Create a Category
        call: full-ticketing.createticketingcategory
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ticketing/{connection-id}/category/{id}
      name: ticketing-connection-id-category-id
      description: REST surface for ticketing-connection_id-category-id.
      operations:
      - method: DELETE
        name: removeticketingcategory
        description: Remove a Category
        call: full-ticketing.removeticketingcategory
        with:
          connection_id: rest.connection_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getticketingcategory
        description: Retrieve a Category
        call: full-ticketing.getticketingcategory
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchticketingcategory
        description: Update a Category
        call: full-ticketing.patchticketingcategory
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateticketingcategory
        description: Update a Category
        call: full-ticketing.updateticketingcategory
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ticketing/{connection-id}/customer
      name: ticketing-connection-id-customer
      description: REST surface for ticketing-connection_id-customer.
      operations:
      - method: GET
        name: listticketingcustomers
        description: List All Customers
        call: full-ticketing.listticketingcustomers
        with:
          limit: rest.limit
          offset: rest.offset
          updated_gte: rest.updated_gte
          sort: rest.sort
          order: rest.order
          query: rest.query
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createticketingcustomer
        description: Create a Customer
        call: full-ticketing.createticketingcustomer
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ticketing/{connection-id}/customer/{id}
      name: ticketing-connection-id-customer-id
      description: REST surface for ticketing-connection_id-customer-id.
      operations:
      - method: DELETE
        name: removeticketingcustomer
        description: Remove a Customer
        call: full-ticketing.removeticketingcustomer
        with:
          connection_id: rest.connection_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getticketingcustomer
        description: Retrieve a Customer
        call: full-ticketing.getticketingcustomer
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchticketingcustomer
        description: Update a Customer
        call: full-ticketing.patchticketingcustomer
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateticketingcustomer
        description: Update a Customer
        call: full-ticketing.updateticketingcustomer
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ticketing/{connection-id}/note
      name: ticketing-connection-id-note
      description: REST surface for ticketing-connection_id-note.
      operations:
      - method: GET
        name: listticketingnotes
        description: List All Notes
        call: full-ticketing.listticketingnotes
        with:
          limit: rest.limit
          offset: rest.offset
          updated_gte: rest.updated_gte
          sort: rest.sort
          order: rest.order
          query: rest.query
          ticket_id: rest.ticket_id
          customer_id: rest.customer_id
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createticketingnote
        description: Create a Note
        call: full-ticketing.createticketingnote
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/ticketing/{connection-id}/note/{id}
      name: ticketing-connection-id-note-id
      description: REST surface for ticketing-connection_id-note-id.
      operations:
      - method: DELETE
        name: removeticketingnote
        description: Remove a Note
        call: full-ticketing.removeticketingnote
        with:
          connection_id: rest.connection_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: getticketingnote
        description: Retrieve a Note
        call: full-ticketing.getticketingnote
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchticketingnote
        description: Update a Note
        call: full-ticketing.patchticketingnote
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateticketingnote
        description: Update a Note
        call: full-ticketing.updateticketingnote
        with:
          fields: rest.fields
          raw: rest.raw
          connection_id: rest.connection_id
          id: rest.id
          body: rest.body
        outputPar

# --- truncated at 32 KB (44 KB total) ---
# Full source: https://raw.githubusercontent.com/api-evangelist/unified-to/refs/heads/main/capabilities/full-ticketing.yaml