UiPath · Capability

UiPath Orchestrator API — Queues

UiPath Orchestrator API — Queues. 2 operations. Lead operation: UiPath List Queue Definitions. Self-contained Naftiko capability covering one Uipath business surface.

Run with Naftiko UipathQueues

What You Can Do

GET
Listqueues — UiPath List Queue Definitions
/v1/odata/queuedefinitions
POST
Createqueue — UiPath Create a Queue Definition
/v1/odata/queuedefinitions

MCP Tools

uipath-list-queue-definitions

UiPath List Queue Definitions

read-only idempotent
uipath-create-queue-definition

UiPath Create a Queue Definition

Capability Spec

orchestrator-queues.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: UiPath Orchestrator API — Queues
  description: 'UiPath Orchestrator API — Queues. 2 operations. Lead operation: UiPath List Queue Definitions. Self-contained
    Naftiko capability covering one Uipath business surface.'
  tags:
  - Uipath
  - Queues
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UIPATH_API_KEY: UIPATH_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestrator-queues
    baseUri: https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_
    description: UiPath Orchestrator API — Queues business capability. Self-contained, no shared references.
    resources:
    - name: odata-QueueDefinitions
      path: /odata/QueueDefinitions
      operations:
      - name: listqueues
        method: GET
        description: UiPath List Queue Definitions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createqueue
        method: POST
        description: UiPath Create a Queue Definition
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.UIPATH_API_KEY}}'
  exposes:
  - type: rest
    namespace: orchestrator-queues-rest
    port: 8080
    description: REST adapter for UiPath Orchestrator API — Queues. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/odata/queuedefinitions
      name: odata-queuedefinitions
      description: REST surface for odata-QueueDefinitions.
      operations:
      - method: GET
        name: listqueues
        description: UiPath List Queue Definitions
        call: orchestrator-queues.listqueues
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createqueue
        description: UiPath Create a Queue Definition
        call: orchestrator-queues.createqueue
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestrator-queues-mcp
    port: 9090
    transport: http
    description: MCP adapter for UiPath Orchestrator API — Queues. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: uipath-list-queue-definitions
      description: UiPath List Queue Definitions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestrator-queues.listqueues
      outputParameters:
      - type: object
        mapping: $.
    - name: uipath-create-queue-definition
      description: UiPath Create a Queue Definition
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestrator-queues.createqueue
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.