Adyen · Schema

TransferInstrumentInfo

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

adyen-transferinstrumentinfo-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/TransferInstrumentInfo",
  "title": "TransferInstrumentInfo",
  "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"
  ],
  "type": "object"
}