Moov · Capability

Moov API — Payment Links

Moov API — Payment Links. 6 operations. Lead operation: Create a payment link. Self-contained Naftiko capability covering one Moov business surface.

Run with Naftiko MoovPayment Links

What You Can Do

POST
Createpaymentlink — Create a payment link
/v1/accounts/{accountid}/payment-links
GET
Listpaymentlinks — List payment links
/v1/accounts/{accountid}/payment-links
GET
Getpaymentlink — Get a payment link
/v1/accounts/{accountid}/payment-links/{paymentlinkcode}
PATCH
Updatepaymentlink — Update a payment link
/v1/accounts/{accountid}/payment-links/{paymentlinkcode}
DELETE
Disablepaymentlink — Disable a payment link
/v1/accounts/{accountid}/payment-links/{paymentlinkcode}
GET
Getpaymentlinkqrcode — Get payment link QR code
/v1/accounts/{accountid}/payment-links/{paymentlinkcode}/qrcode

MCP Tools

create-payment-link

Create a payment link

list-payment-links

List payment links

read-only idempotent
get-payment-link

Get a payment link

read-only idempotent
update-payment-link

Update a payment link

idempotent
disable-payment-link

Disable a payment link

idempotent
get-payment-link-qr-code

Get payment link QR code

read-only idempotent

Capability Spec

moov-payment-links.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Moov API — Payment Links
  description: 'Moov API — Payment Links. 6 operations. Lead operation: Create a payment link. Self-contained Naftiko capability
    covering one Moov business surface.'
  tags:
  - Moov
  - Payment Links
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    MOOV_API_KEY: MOOV_API_KEY
capability:
  consumes:
  - type: http
    namespace: moov-payment-links
    baseUri: https://api.moov.io
    description: Moov API — Payment Links business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountID-payment-links
      path: /accounts/{accountID}/payment-links
      operations:
      - name: createpaymentlink
        method: POST
        description: Create a payment link
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: listpaymentlinks
        method: GET
        description: List payment links
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: accounts-accountID-payment-links-paymentLinkCode
      path: /accounts/{accountID}/payment-links/{paymentLinkCode}
      operations:
      - name: getpaymentlink
        method: GET
        description: Get a payment link
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatepaymentlink
        method: PATCH
        description: Update a payment link
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: disablepaymentlink
        method: DELETE
        description: Disable a payment link
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: accounts-accountID-payment-links-paymentLinkCode-qrcode
      path: /accounts/{accountID}/payment-links/{paymentLinkCode}/qrcode
      operations:
      - name: getpaymentlinkqrcode
        method: GET
        description: Get payment link QR code
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.MOOV_API_KEY}}'
  exposes:
  - type: rest
    namespace: moov-payment-links-rest
    port: 8080
    description: REST adapter for Moov API — Payment Links. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/accounts/{accountid}/payment-links
      name: accounts-accountid-payment-links
      description: REST surface for accounts-accountID-payment-links.
      operations:
      - method: POST
        name: createpaymentlink
        description: Create a payment link
        call: moov-payment-links.createpaymentlink
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: GET
        name: listpaymentlinks
        description: List payment links
        call: moov-payment-links.listpaymentlinks
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/payment-links/{paymentlinkcode}
      name: accounts-accountid-payment-links-paymentlinkcode
      description: REST surface for accounts-accountID-payment-links-paymentLinkCode.
      operations:
      - method: GET
        name: getpaymentlink
        description: Get a payment link
        call: moov-payment-links.getpaymentlink
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updatepaymentlink
        description: Update a payment link
        call: moov-payment-links.updatepaymentlink
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: disablepaymentlink
        description: Disable a payment link
        call: moov-payment-links.disablepaymentlink
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/payment-links/{paymentlinkcode}/qrcode
      name: accounts-accountid-payment-links-paymentlinkcode-qrcode
      description: REST surface for accounts-accountID-payment-links-paymentLinkCode-qrcode.
      operations:
      - method: GET
        name: getpaymentlinkqrcode
        description: Get payment link QR code
        call: moov-payment-links.getpaymentlinkqrcode
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: moov-payment-links-mcp
    port: 9090
    transport: http
    description: MCP adapter for Moov API — Payment Links. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: create-payment-link
      description: Create a payment link
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: moov-payment-links.createpaymentlink
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: list-payment-links
      description: List payment links
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: moov-payment-links.listpaymentlinks
      outputParameters:
      - type: object
        mapping: $.
    - name: get-payment-link
      description: Get a payment link
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: moov-payment-links.getpaymentlink
      outputParameters:
      - type: object
        mapping: $.
    - name: update-payment-link
      description: Update a payment link
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: moov-payment-links.updatepaymentlink
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: disable-payment-link
      description: Disable a payment link
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: moov-payment-links.disablepaymentlink
      outputParameters:
      - type: object
        mapping: $.
    - name: get-payment-link-qr-code
      description: Get payment link QR code
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: moov-payment-links.getpaymentlinkqrcode
      outputParameters:
      - type: object
        mapping: $.