Adyen · Arazzo Workflow

Adyen Create Payment Link and Get Status

Version 1.0.0

Create a Pay by Link payment link then read its current status.

1 workflow 1 source API 1 provider
View Spec View on GitHub PaymentsFinancial-ServicesFintechArazzoWorkflows

Provider

adyen

Workflows

payment-link-create-and-get
Create a payment link and retrieve it by id.
Creates a Pay by Link payment link and then retrieves its details using the returned link id so a caller can share the url and check the status.
2 steps inputs: amount, countryCode, merchantAccount, reference outputs: linkId, status, url
1
createLink
Create a Pay by Link payment link for the supplied amount and reference, returning a shareable url and a link id.
2
getLink
Retrieve the payment link by its id to confirm the current status before sharing the url with the shopper.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Adyen Create Payment Link and Get Status
  summary: Create a Pay by Link payment link then read its current status.
  description: >-
    Pay by Link lets you collect a payment without building a checkout page.
    This workflow creates a payment link for the supplied amount and reference,
    then reads the link back by its id to confirm its url and status. Every step
    spells out its request inline so the flow can be read and executed without
    opening the underlying OpenAPI description.
  version: 1.0.0
  x-realizes-capability-ids:
  - BC-1340.10
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-1340.10
      capability_name: Payment Initiation Management
      spec: adyen-links-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: linksApi
  url: ../openapi/adyen-links-api-openapi.yml
  type: openapi
workflows:
- workflowId: payment-link-create-and-get
  summary: Create a payment link and retrieve it by id.
  description: >-
    Creates a Pay by Link payment link and then retrieves its details using the
    returned link id so a caller can share the url and check the status.
  inputs:
    type: object
    required:
    - merchantAccount
    - amount
    - reference
    - countryCode
    properties:
      merchantAccount:
        type: string
        description: The merchant account identifier that processes the link.
      amount:
        type: object
        description: The amount object with currency and value (minor units).
      reference:
        type: string
        description: Your unique reference for the payment link.
      countryCode:
        type: string
        description: The shopper country code (e.g. NL).
  steps:
  - stepId: createLink
    description: >-
      Create a Pay by Link payment link for the supplied amount and reference,
      returning a shareable url and a link id.
    operationId: post-paymentLinks
    requestBody:
      contentType: application/json
      payload:
        merchantAccount: $inputs.merchantAccount
        amount: $inputs.amount
        reference: $inputs.reference
        countryCode: $inputs.countryCode
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      linkId: $response.body#/id
      url: $response.body#/url
      status: $response.body#/status
  - stepId: getLink
    description: >-
      Retrieve the payment link by its id to confirm the current status before
      sharing the url with the shopper.
    operationId: get-paymentLinks-linkId
    parameters:
    - name: linkId
      in: path
      value: $steps.createLink.outputs.linkId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      status: $response.body#/status
      url: $response.body#/url
  outputs:
    linkId: $steps.createLink.outputs.linkId
    url: $steps.getLink.outputs.url
    status: $steps.getLink.outputs.status

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/adyen-payment-link-create-and-get-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.