Toys R Us · Capability

Toys R Us Commerce API — Acknowledgements

Toys R Us Commerce API — Acknowledgements. 2 operations. Lead operation: Get Acknowledgements. Self-contained Naftiko capability covering one Toys R Us business surface.

Run with Naftiko Toys R UsAcknowledgements

What You Can Do

GET
Getacknowledgements — Get Acknowledgements
/v1/api/v2/acknowledgements
POST
Createacknowledgement — Create Acknowledgement
/v1/api/v2/acknowledgements/import

MCP Tools

get-acknowledgements

Get Acknowledgements

read-only idempotent
create-acknowledgement

Create Acknowledgement

Capability Spec

commerce-acknowledgements.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Toys R Us Commerce API — Acknowledgements
  description: 'Toys R Us Commerce API — Acknowledgements. 2 operations. Lead operation: Get Acknowledgements. Self-contained
    Naftiko capability covering one Toys R Us business surface.'
  tags:
  - Toys R Us
  - Acknowledgements
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    TOYS_R_US_API_KEY: TOYS_R_US_API_KEY
capability:
  consumes:
  - type: http
    namespace: commerce-acknowledgements
    baseUri: https://commerceapi.io
    description: Toys R Us Commerce API — Acknowledgements business capability. Self-contained, no shared references.
    resources:
    - name: api-v2-acknowledgements
      path: /api/v2/acknowledgements
      operations:
      - name: getacknowledgements
        method: GET
        description: Get Acknowledgements
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: status
          in: query
          type: integer
          description: Filter acknowledgements by status code.
        - name: page
          in: query
          type: integer
          description: Page number for paginated results.
    - name: api-v2-acknowledgements-import
      path: /api/v2/acknowledgements/import
      operations:
      - name: createacknowledgement
        method: POST
        description: Create Acknowledgement
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: subscription-key
      value: '{{env.TOYS_R_US_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: commerce-acknowledgements-rest
    port: 8080
    description: REST adapter for Toys R Us Commerce API — Acknowledgements. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v2/acknowledgements
      name: api-v2-acknowledgements
      description: REST surface for api-v2-acknowledgements.
      operations:
      - method: GET
        name: getacknowledgements
        description: Get Acknowledgements
        call: commerce-acknowledgements.getacknowledgements
        with:
          status: rest.status
          page: rest.page
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v2/acknowledgements/import
      name: api-v2-acknowledgements-import
      description: REST surface for api-v2-acknowledgements-import.
      operations:
      - method: POST
        name: createacknowledgement
        description: Create Acknowledgement
        call: commerce-acknowledgements.createacknowledgement
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: commerce-acknowledgements-mcp
    port: 9090
    transport: http
    description: MCP adapter for Toys R Us Commerce API — Acknowledgements. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-acknowledgements
      description: Get Acknowledgements
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: commerce-acknowledgements.getacknowledgements
      with:
        status: tools.status
        page: tools.page
      outputParameters:
      - type: object
        mapping: $.
    - name: create-acknowledgement
      description: Create Acknowledgement
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: commerce-acknowledgements.createacknowledgement
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.