Adyen · Capability

Adyen Configuration API — Reveal

Adyen Configuration API — Reveal. 2 operations. Lead operation: Adyen Get the PAN of a Payment Instrument. Self-contained Naftiko capability covering one Adyen business surface.

Run with Naftiko AdyenReveal

What You Can Do

GET
Getpaymentinstrumentsidreveal — Adyen Get the PAN of a Payment Instrument
/v1/paymentinstruments/{id}/reveal
POST
Postpinsreveal — Adyen Reveal Pin
/v1/pins/reveal

MCP Tools

adyen-get-pan-payment-instrument

Adyen Get the PAN of a Payment Instrument

read-only idempotent
adyen-reveal-pin

Adyen Reveal Pin

Capability Spec

configuration-reveal.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Adyen Configuration API — Reveal
  description: 'Adyen Configuration API — Reveal. 2 operations. Lead operation: Adyen Get the PAN of a Payment Instrument.
    Self-contained Naftiko capability covering one Adyen business surface.'
  tags:
  - Adyen
  - Reveal
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    ADYEN_API_KEY: ADYEN_API_KEY
capability:
  consumes:
  - type: http
    namespace: configuration-reveal
    baseUri: https://balanceplatform-api-test.adyen.com/bcl/v2
    description: Adyen Configuration API — Reveal business capability. Self-contained, no shared references.
    resources:
    - name: paymentInstruments-id-reveal
      path: /paymentInstruments/{id}/reveal
      operations:
      - name: getpaymentinstrumentsidreveal
        method: GET
        description: Adyen Get the PAN of a Payment Instrument
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: The unique identifier of the payment instrument.
          required: true
    - name: pins-reveal
      path: /pins/reveal
      operations:
      - name: postpinsreveal
        method: POST
        description: Adyen Reveal Pin
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - 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: configuration-reveal-rest
    port: 8080
    description: REST adapter for Adyen Configuration API — Reveal. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/paymentinstruments/{id}/reveal
      name: paymentinstruments-id-reveal
      description: REST surface for paymentInstruments-id-reveal.
      operations:
      - method: GET
        name: getpaymentinstrumentsidreveal
        description: Adyen Get the PAN of a Payment Instrument
        call: configuration-reveal.getpaymentinstrumentsidreveal
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/pins/reveal
      name: pins-reveal
      description: REST surface for pins-reveal.
      operations:
      - method: POST
        name: postpinsreveal
        description: Adyen Reveal Pin
        call: configuration-reveal.postpinsreveal
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: configuration-reveal-mcp
    port: 9090
    transport: http
    description: MCP adapter for Adyen Configuration API — Reveal. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: adyen-get-pan-payment-instrument
      description: Adyen Get the PAN of a Payment Instrument
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: configuration-reveal.getpaymentinstrumentsidreveal
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: adyen-reveal-pin
      description: Adyen Reveal Pin
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: configuration-reveal.postpinsreveal
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.