Adyen · Schema

TransferInstrumentInfo

TransferInstrumentInfo schema from Adyen API

PaymentsFinancial ServicesFintech

Properties

Name Type Description
bankAccount object Contains information about the legal entity's bank account.
legalEntityId string The unique identifier of the [legal entity](https://docs.adyen.com/api-explorer/legalentity/latest/post/legalEntities#responses-200-id) that owns the transfer instrument.
type string The type of transfer instrument. Possible value: **bankAccount**.
View JSON Schema on GitHub

JSON Schema

legal-entity-transfer-instrument-info-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/legal-entity-transfer-instrument-info-schema.json",
  "title": "TransferInstrumentInfo",
  "description": "TransferInstrumentInfo schema from Adyen API",
  "type": "object",
  "properties": {
    "bankAccount": {
      "description": "Contains information about the legal entity's bank account.",
      "$ref": "#/components/schemas/BankAccountInfo"
    },
    "legalEntityId": {
      "description": "The unique identifier of the [legal entity](https://docs.adyen.com/api-explorer/legalentity/latest/post/legalEntities#responses-200-id) that owns the transfer instrument.",
      "type": "string"
    },
    "type": {
      "description": "The type of transfer instrument.\n\nPossible value: **bankAccount**.",
      "enum": [
        "bankAccount",
        "recurringDetail"
      ],
      "type": "string"
    }
  },
  "required": [
    "legalEntityId",
    "type",
    "bankAccount"
  ]
}