Adyen · Schema

UpdatePaymentLinkRequest

UpdatePaymentLinkRequest schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
status string Status of the payment link. Possible values: * **expired**
View JSON Schema on GitHub

JSON Schema

checkout-update-payment-link-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-schema/checkout-update-payment-link-request-schema.json",
  "title": "UpdatePaymentLinkRequest",
  "description": "UpdatePaymentLinkRequest schema from Adyen API",
  "type": "object",
  "properties": {
    "status": {
      "description": "Status of the payment link. Possible values:\n* **expired**",
      "enum": [
        "expired"
      ],
      "type": "string"
    }
  },
  "required": [
    "status"
  ]
}