blue-yonder · Capability

Blue Yonder Warehouse Management API — Receipts

Blue Yonder Warehouse Management API — Receipts. 2 operations. Lead operation: List receipts. Self-contained Naftiko capability covering one Blue Yonder business surface.

Run with Naftiko Blue YonderReceipts

What You Can Do

GET
Listreceipts — List receipts
/v1/wms/v1/receipts
POST
Createreceipt — Create inbound receipt
/v1/wms/v1/receipts

MCP Tools

list-receipts

List receipts

read-only idempotent
create-inbound-receipt

Create inbound receipt

Capability Spec

warehouse-management-receipts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Blue Yonder Warehouse Management API — Receipts
  description: 'Blue Yonder Warehouse Management API — Receipts. 2 operations. Lead operation: List receipts. Self-contained
    Naftiko capability covering one Blue Yonder business surface.'
  tags:
  - Blue Yonder
  - Receipts
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    BLUE_YONDER_API_KEY: BLUE_YONDER_API_KEY
capability:
  consumes:
  - type: http
    namespace: warehouse-management-receipts
    baseUri: https://api.blueyonder.example.com
    description: Blue Yonder Warehouse Management API — Receipts business capability. Self-contained, no shared references.
    resources:
    - name: wms-v1-receipts
      path: /wms/v1/receipts
      operations:
      - name: listreceipts
        method: GET
        description: List receipts
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: string
        - name: fromDate
          in: query
          type: string
        - name: toDate
          in: query
          type: string
      - name: createreceipt
        method: POST
        description: Create inbound receipt
        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.BLUE_YONDER_API_KEY}}'
  exposes:
  - type: rest
    namespace: warehouse-management-receipts-rest
    port: 8080
    description: REST adapter for Blue Yonder Warehouse Management API — Receipts. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/wms/v1/receipts
      name: wms-v1-receipts
      description: REST surface for wms-v1-receipts.
      operations:
      - method: GET
        name: listreceipts
        description: List receipts
        call: warehouse-management-receipts.listreceipts
        with:
          status: rest.status
          fromDate: rest.fromDate
          toDate: rest.toDate
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createreceipt
        description: Create inbound receipt
        call: warehouse-management-receipts.createreceipt
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: warehouse-management-receipts-mcp
    port: 9090
    transport: http
    description: MCP adapter for Blue Yonder Warehouse Management API — Receipts. One tool per consumed operation, routed
      inline through this capability's consumes block.
    tools:
    - name: list-receipts
      description: List receipts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: warehouse-management-receipts.listreceipts
      with:
        status: tools.status
        fromDate: tools.fromDate
        toDate: tools.toDate
      outputParameters:
      - type: object
        mapping: $.
    - name: create-inbound-receipt
      description: Create inbound receipt
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: warehouse-management-receipts.createreceipt
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.