Adyen · Schema

BankCategoryData

BankCategoryData schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
priority string The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**. Possible values: * **regular**
type string **bank**
View JSON Schema on GitHub

JSON Schema

transfers-bank-category-data-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/transfers-bank-category-data-schema.json",
  "title": "BankCategoryData",
  "description": "BankCategoryData schema from Adyen API",
  "type": "object",
  "properties": {
    "priority": {
      "x-addedInVersion": "4",
      "description": "The priority for the bank transfer. This sets the speed at which the transfer is sent and the fees that you have to pay. Required for transfers with `category` **bank**.\n\nPossible values:\n\n* **regular**: For normal, low-value transactions.\n\n* **fast**: Faster way to transfer funds but has higher fees. Recommended for high-priority, low-value transactions.\n\n* **wire**: Fastest way to transfer funds but has the highest fees. Recommended for high-priority, high-value transactions.\n\n* **instant**: Instant way to transfer funds in [SEPA countries](https://www.ecb.europa.eu/paym/integration/retail/sepa/html/index.en.html).\n\n* **crossBorder**: High-value transfer to a recipient in a different country.\n\n* **internal**: Transfer to an Adyen-issued business bank account (by bank account number/IBAN).",
      "enum": [
        "crossBorder",
        "fast",
        "instant",
        "internal",
        "regular",
        "wire"
      ],
      "type": "string"
    },
    "type": {
      "default": "bank",
      "description": "**bank**",
      "enum": [
        "bank"
      ],
      "type": "string"
    }
  },
  "additionalProperties": false
}