Adyen · Capability

Adyen Checkout API — Cancels

Adyen Checkout API — Cancels. 3 operations. Lead operation: Adyen Cancel an Authorised Payment. Self-contained Naftiko capability covering one Adyen business surface.

Run with Naftiko AdyenCancels

What You Can Do

POST
Postcancels — Adyen Cancel an Authorised Payment
/v1/cancels
POST
Postorderscancel — Adyen Cancel an Order
/v1/orders/cancel
POST
Postpaymentspaymentpspreferencecancels — Adyen Cancel an Authorised Payment
/v1/payments/{paymentpspreference}/cancels

MCP Tools

adyen-cancel-authorised-payment

Adyen Cancel an Authorised Payment

adyen-cancel-order

Adyen Cancel an Order

adyen-cancel-authorised-payment-2

Adyen Cancel an Authorised Payment

Capability Spec

checkout-cancels.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adyen Checkout API — Cancels
  description: 'Adyen Checkout API — Cancels. 3 operations. Lead operation: Adyen Cancel an Authorised Payment. Self-contained
    Naftiko capability covering one Adyen business surface.'
  tags:
  - Adyen
  - Cancels
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADYEN_API_KEY: ADYEN_API_KEY
capability:
  consumes:
  - type: http
    namespace: checkout-cancels
    baseUri: https://checkout-test.adyen.com/v71
    description: Adyen Checkout API — Cancels business capability. Self-contained, no shared references.
    resources:
    - name: cancels
      path: /cancels
      operations:
      - name: postcancels
        method: POST
        description: Adyen Cancel an Authorised Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: orders-cancel
      path: /orders/cancel
      operations:
      - name: postorderscancel
        method: POST
        description: Adyen Cancel an Order
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: payments-paymentPspReference-cancels
      path: /payments/{paymentPspReference}/cancels
      operations:
      - name: postpaymentspaymentpspreferencecancels
        method: POST
        description: Adyen Cancel an Authorised Payment
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: paymentPspReference
          in: path
          type: string
          description: The [`pspReference`](https://docs.adyen.com/api-explorer/#/CheckoutService/latest/post/payments__resParam_pspReference)
            of the payment that you want to cancel.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    authentication:
      type: apikey
      key: X-API-Key
      value: '{{env.ADYEN_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: checkout-cancels-rest
    port: 8080
    description: REST adapter for Adyen Checkout API — Cancels. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/cancels
      name: cancels
      description: REST surface for cancels.
      operations:
      - method: POST
        name: postcancels
        description: Adyen Cancel an Authorised Payment
        call: checkout-cancels.postcancels
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/orders/cancel
      name: orders-cancel
      description: REST surface for orders-cancel.
      operations:
      - method: POST
        name: postorderscancel
        description: Adyen Cancel an Order
        call: checkout-cancels.postorderscancel
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/payments/{paymentpspreference}/cancels
      name: payments-paymentpspreference-cancels
      description: REST surface for payments-paymentPspReference-cancels.
      operations:
      - method: POST
        name: postpaymentspaymentpspreferencecancels
        description: Adyen Cancel an Authorised Payment
        call: checkout-cancels.postpaymentspaymentpspreferencecancels
        with:
          paymentPspReference: rest.paymentPspReference
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: checkout-cancels-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adyen Checkout API — Cancels. One tool per consumed operation, routed inline through this
      capability's consumes block.
    tools:
    - name: adyen-cancel-authorised-payment
      description: Adyen Cancel an Authorised Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: checkout-cancels.postcancels
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-cancel-order
      description: Adyen Cancel an Order
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: checkout-cancels.postorderscancel
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-cancel-authorised-payment-2
      description: Adyen Cancel an Authorised Payment
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: checkout-cancels.postpaymentspaymentpspreferencecancels
      with:
        paymentPspReference: tools.paymentPspReference
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.