UiPath · Capability

UiPath Orchestrator API — QueueItems

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

Run with Naftiko UipathQueueItems

What You Can Do

GET
Listqueueitems — UiPath List Queue Items
/v1/odata/queueitems
POST
Addqueueitem — UiPath Add a Queue Item
/v1/odata/queueitems

MCP Tools

uipath-list-queue-items

UiPath List Queue Items

read-only idempotent
uipath-add-queue-item

UiPath Add a Queue Item

Capability Spec

orchestrator-queueitems.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: UiPath Orchestrator API — QueueItems
  description: 'UiPath Orchestrator API — QueueItems. 2 operations. Lead operation: UiPath List Queue Items. Self-contained
    Naftiko capability covering one Uipath business surface.'
  tags:
  - Uipath
  - QueueItems
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    UIPATH_API_KEY: UIPATH_API_KEY
capability:
  consumes:
  - type: http
    namespace: orchestrator-queueitems
    baseUri: https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_
    description: UiPath Orchestrator API — QueueItems business capability. Self-contained, no shared references.
    resources:
    - name: odata-QueueItems
      path: /odata/QueueItems
      operations:
      - name: listqueueitems
        method: GET
        description: UiPath List Queue Items
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: addqueueitem
        method: POST
        description: UiPath Add a Queue Item
        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-queueitems-rest
    port: 8080
    description: REST adapter for UiPath Orchestrator API — QueueItems. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/odata/queueitems
      name: odata-queueitems
      description: REST surface for odata-QueueItems.
      operations:
      - method: GET
        name: listqueueitems
        description: UiPath List Queue Items
        call: orchestrator-queueitems.listqueueitems
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: addqueueitem
        description: UiPath Add a Queue Item
        call: orchestrator-queueitems.addqueueitem
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: orchestrator-queueitems-mcp
    port: 9090
    transport: http
    description: MCP adapter for UiPath Orchestrator API — QueueItems. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: uipath-list-queue-items
      description: UiPath List Queue Items
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: orchestrator-queueitems.listqueueitems
      outputParameters:
      - type: object
        mapping: $.
    - name: uipath-add-queue-item
      description: UiPath Add a Queue Item
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: orchestrator-queueitems.addqueueitem
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.