> ## Documentation Index
> Fetch the complete documentation index at: https://docs.xendit.co/llms.txt
> Use this file to discover all available pages before exploring further.

# Payout Webhook

> Webhook sent when payout status changes.

Events:
- **v3_payout.succeeded** — The payout has already succeeded. The partner bank has credited the funds to the beneficiary.
- **v3_payout.failed** — The payout has already failed. The partner bank rejected the transaction or there was an issue processing the transaction.
- **v3_payout.reversed** — The payout that was originally in succeeded status received a bounceback or reversal of funds from the partner bank. Funds have been refunded back to the merchant's available balance.

Configure your callback URL at https://dashboard.xendit.co/settings/developers#webhooks under the PAYOUT section.

## OpenAPI

````json POST /v3_payout_webhook
{
  "openapi": "3.0.3",
  "info": {
    "title": "Payouts",
    "version": "1.0",
    "description": "This Payouts API can be used to send money at scale to all bank accounts & E-Wallets in Indonesia, Philippines, Thailand, Malaysia and Vietnam by using just a single endpoint."
  },
  "servers": [
    {
      "url": "https://api.xendit.co",
      "description": "Xendit API"
    }
  ],
  "paths": {
    "/v3_payout_webhook": {
      "post": {
        "operationId": "PayoutWebhooks_receive",
        "summary": "Payout Webhook",
        "description": "Webhook sent when payout status changes.\n\nEvents:\n- **v3_payout.succeeded** — The payout has already succeeded. The partner bank has credited the funds to the beneficiary.\n- **v3_payout.failed** — The payout has already failed. The partner bank rejected the transaction or there was an issue processing the transaction.\n- **v3_payout.reversed** — The payout that was originally in succeeded status received a bounceback or reversal of funds from the partner bank. Funds have been refunded back to the merchant's available balance.\n\nConfigure your callback URL at https://dashboard.xendit.co/settings/developers#webhooks under the PAYOUT section.",
        "parameters": [],
        "responses": {
          "204": {
            "description": "There is no content to send for this request, but the headers may be useful. "
          }
        },
        "tags": [
          "Payout v3 (Beta)"
        ],
        "requestBody": {
          "required": "true",
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Payouts_v3_PayoutWebhookEvent"
              },
              "examples": {
                "Payout Failed Webhook": {
                  "summary": "Payout Failed Webhook",
                  "value": {
                    "event": "v3_payout.failed",
                    "business_id": "6018306aa16ad90cb3c43ba7",
                    "created": "2025-06-11T08:01:30Z",
                    "data": {
                      "payout_id": "po-b2c3d4e5-f6a7-8901-bcde-f23456789012",
                      "status": "FAILED",
                      "reference_id": "payout-ref-002",
                      "type": "B2C",
                      "source_currency": "PHP",
                      "source_amount": "50000",
                      "destination_currency": "PHP",
                      "destination_amount": "50000",
                      "sender": {
                        "type": "BUSINESS",
                        "business_name": "Acme Corp"
                      },
                      "recipient": {
                        "type": "INDIVIDUAL",
                        "given_name": "Maria",
                        "surname": "Santos",
                        "relationship": "CUSTOMER",
                        "account_details": {
                          "currency": "PHP",
                          "account_country": "PH",
                          "account_holder_name": "Maria Santos",
                          "account_number": "09171234567",
                          "routing_type_1": "wallet",
                          "routing_value_1": "GCASH"
                        }
                      },
                      "source_of_fund": "BUSINESS_REVENUE",
                      "purpose_code": "SALARY",
                      "description": "Freelancer payment",
                      "failure_code": "INVALID_DESTINATION",
                      "created": "2025-06-11T08:00:00Z",
                      "updated": "2025-06-11T08:01:30Z",
                      "business_id": "6018306aa16ad90cb3c43ba7"
                    }
                  }
                },
                "Payout Succeeded Webhook": {
                  "summary": "Payout Succeeded Webhook",
                  "value": {
                    "event": "v3_payout.succeeded",
                    "business_id": "6018306aa16ad90cb3c43ba7",
                    "created": "2025-06-10T11:45:00Z",
                    "data": {
                      "payout_id": "po-a1b2c3d4-e5f6-7890-abcd-ef1234567890",
                      "status": "SUCCEEDED",
                      "reference_id": "payout-ref-001",
                      "type": "B2C",
                      "source_currency": "IDR",
                      "source_amount": "1000000",
                      "destination_currency": "USD",
                      "destination_amount": "63",
                      "sender": {
                        "type": "BUSINESS",
                        "business_name": "Acme Corp"
                      },
                      "recipient": {
                        "type": "INDIVIDUAL",
                        "given_name": "John",
                        "surname": "Doe",
                        "relationship": "CUSTOMER",
                        "account_details": {
                          "currency": "USD",
                          "account_country": "US",
                          "account_holder_name": "John Doe",
                          "account_number": "1234567890",
                          "routing_type_1": "aba",
                          "routing_value_1": "021000021"
                        }
                      },
                      "source_of_fund": "BUSINESS_REVENUE",
                      "purpose_code": "SALARY",
                      "description": "Monthly salary payment",
                      "created": "2025-06-10T10:30:00Z",
                      "updated": "2025-06-10T11:45:00Z",
                      "business_id": "6018306aa16ad90cb3c43ba7"
                    }
                  }
                }
              }
            }
          }
        },
        "security": [
          {
            "Payouts_v3_SecretApiKeyAuth": []
          }
        ]
      }
    }
  },
  "components": {
    "schemas": {
      "Payouts_v3_PayoutWebhookEvent": {
        "type": "object",
        "required": [
          "event",
          "business_id",
          "created",
          "data"
        ],
        "properties": {
          "event": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_WebhookEvent"
              }
            ],
            "description": "Type of the event"
          },
          "business_id": {
            "type": "string",
            "description": "Xendit's unique business ID"
          },
          "created": {
            "type": "string",
            "format": "date-time",
            "description": "Timestamp when the event was made. Format: ISO 8601, UTC+0"
          },
          "data": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Payout"
              }
            ],
            "description": "Payout Object"
          }
        },
        "description": "Webhook event payload sent when payout status changes"
      },
      "Payouts_v3_WebhookEvent": {
        "type": "string",
        "enum": [
          "v3_payout.succeeded",
          "v3_payout.failed",
          "v3_payout.reversed"
        ]
      },
      "Payouts_v3_Payout": {
        "type": "object",
        "required": [
          "payout_id",
          "status",
          "reference_id",
          "type",
          "destination_currency",
          "destination_amount",
          "sender",
          "recipient",
          "created",
          "updated",
          "business_id"
        ],
        "properties": {
          "payout_id": {
            "type": "string",
            "description": "Unique payout id in UUID format, prefixed with po-"
          },
          "status": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PayoutStatus"
              }
            ],
            "description": "Status of the payout. See [Payout Status Lifecycle](https://docs.xendit.co/docs/payout-status-lifecycle)"
          },
          "reference_id": {
            "type": "string",
            "description": "ID provided by merchant to identify the request"
          },
          "type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PayoutType"
              }
            ],
            "description": "Payout type"
          },
          "processor_reference": {
            "type": "string",
            "description": "Payout reference from Xendit's processor"
          },
          "source_currency": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PayoutCurrency"
              }
            ],
            "description": "Origin currency of the Payout"
          },
          "source_amount": {
            "type": "integer",
            "description": "Origin amount of the Payout in minor units.\n\nA minor unit is the smallest unit of a currency. Most currencies have 2 decimals, others have 0.\nExamples: PHP 10.00 → `1000`, IDR 10 → `10`."
          },
          "destination_currency": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PayoutCurrency"
              }
            ],
            "description": "Destination currency of the Payout"
          },
          "destination_amount": {
            "type": "integer",
            "description": "Destination amount of the Payout in minor units.\n\nA minor unit is the smallest unit of a currency. Most currencies have 2 decimals, others have 0.\nExamples: PHP 10.00 → `1000`, IDR 10 → `10`."
          },
          "sender": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Sender"
              }
            ],
            "description": "Contains sender information"
          },
          "recipient": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Recipient"
              }
            ],
            "description": "Contains recipient information"
          },
          "source_of_fund": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_SourceOfFund"
              }
            ],
            "description": "Source of fund of the payout"
          },
          "purpose_code": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PurposeCode"
              }
            ],
            "description": "Purpose of the payout"
          },
          "description": {
            "type": "string",
            "maxLength": "100",
            "description": "Free text description shown in recipient's bank statement, if supported"
          },
          "underlying_documents": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/Payouts_v3_UnderlyingDocument"
            },
            "description": "Underlying document attachments"
          },
          "created": {
            "type": "string",
            "format": "date-time",
            "description": "Timestamp when the payout was made. Format: ISO 8601, UTC+0"
          },
          "updated": {
            "type": "string",
            "format": "date-time",
            "description": "Timestamp when the payout was last updated. Format: ISO 8601, UTC+0"
          },
          "estimated_arrival_time": {
            "type": "string",
            "format": "date-time",
            "description": "Estimated time of arrival of funds in destination account. UTC+0"
          },
          "failure_code": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_FailureCode"
              }
            ],
            "description": "Failure reason of the Payout. See [Payout Status Lifecycle](https://docs.xendit.co/docs/payout-status-lifecycle)"
          },
          "business_id": {
            "type": "string",
            "description": "Your Xendit Business ID"
          },
          "metadata": {
            "type": "object",
            "additionalProperties": {},
            "description": "Object of additional information the merchant may use"
          }
        },
        "description": "Payout Object"
      },
      "Payouts_v3_PayoutStatus": {
        "type": "string",
        "enum": [
          "ACCEPTED",
          "PENDING_COMPLIANCE_REVIEW",
          "REJECTED",
          "ROUTING",
          "REQUESTED",
          "READY",
          "LOCKED",
          "EXPIRED",
          "FAILED",
          "SUCCEEDED",
          "CANCELLED",
          "REVERSED"
        ]
      },
      "Payouts_v3_PayoutType": {
        "type": "string",
        "enum": [
          "B2B",
          "B2C",
          "C2C",
          "C2B"
        ]
      },
      "Payouts_v3_PayoutCurrency": {
        "type": "string",
        "enum": [
          "USD",
          "SGD",
          "IDR",
          "PHP",
          "MYR",
          "THB",
          "VND",
          "HKD",
          "MXN",
          "CNY",
          "KRW",
          "AUD",
          "EUR"
        ]
      },
      "Payouts_v3_Sender": {
        "type": "object",
        "required": [
          "type"
        ],
        "properties": {
          "type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_EntityType"
              }
            ],
            "description": "Entity type of the sender"
          },
          "business_name": {
            "type": "string",
            "maxLength": "50",
            "description": "Name of the business sender. Required if type is BUSINESS"
          },
          "given_name": {
            "type": "string",
            "maxLength": "50",
            "description": "First name of the sender. Required if type is INDIVIDUAL"
          },
          "surname": {
            "type": "string",
            "maxLength": "50",
            "description": "Last name of the sender. Required if type is INDIVIDUAL"
          },
          "given_name_non_roman": {
            "type": "string",
            "maxLength": "50",
            "description": "First non-roman name of the sender"
          },
          "surname_non_roman": {
            "type": "string",
            "maxLength": "50",
            "description": "Last non-roman name of the sender"
          },
          "details": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_SenderDetails"
              }
            ],
            "description": "Details of the sender"
          },
          "address": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Address"
              }
            ],
            "description": "Address details of the sender"
          }
        },
        "description": "Contains sender information. Only allowed for FIs (Financial Institutions)."
      },
      "Payouts_v3_Recipient": {
        "type": "object",
        "required": [
          "type",
          "relationship",
          "account_details"
        ],
        "properties": {
          "type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_EntityType"
              }
            ],
            "description": "Entity type of the recipient"
          },
          "business_name": {
            "type": "string",
            "maxLength": "50",
            "description": "Name of the business recipient. Required if type is BUSINESS"
          },
          "given_name": {
            "type": "string",
            "maxLength": "50",
            "description": "First name of the recipient. Required if type is INDIVIDUAL"
          },
          "surname": {
            "type": "string",
            "maxLength": "50",
            "description": "Last name of the recipient. Required if type is INDIVIDUAL"
          },
          "given_name_non_roman": {
            "type": "string",
            "maxLength": "50",
            "description": "First non-roman name of the recipient"
          },
          "surname_non_roman": {
            "type": "string",
            "maxLength": "50",
            "description": "Last non-roman name of the recipient"
          },
          "relationship": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Relationship"
              }
            ],
            "description": "Recipient's relationship to the sender in the context of the transaction"
          },
          "details": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_RecipientDetails"
              }
            ],
            "description": "Details of the recipient"
          },
          "account_details": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_RecipientAccountDetails"
              }
            ],
            "description": "Recipient's account details where the payment will be credited"
          },
          "address": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Address"
              }
            ],
            "description": "Address details of the recipient"
          }
        },
        "description": "Contains recipient information"
      },
      "Payouts_v3_SourceOfFund": {
        "type": "string",
        "enum": [
          "INVESTMENT",
          "PERSONAL_SAVINGS",
          "BUSINESS_REVENUE",
          "LEGACY",
          "BUSINESS_ARRANGEMENT",
          "LOAN",
          "SALARY",
          "OTHER"
        ]
      },
      "Payouts_v3_PurposeCode": {
        "type": "string",
        "enum": [
          "SELF",
          "FAMILY",
          "EDUCATION",
          "MEDICAL",
          "HOTEL",
          "TRAVEL",
          "UTILITIES",
          "LOAN_REPAYMENT",
          "TAX_PAYMENT",
          "RESIDENCE_PURCHASE",
          "RESIDENCE_RENT",
          "INSURANCE",
          "MUTUAL_FUND",
          "SHARES_INVESTMENT",
          "DONATION",
          "ADVERTISING",
          "ROYALTY_FEES",
          "BROKER_FEES",
          "ADVISORS",
          "OFFICE",
          "CONSTRUCTION",
          "SHIPMENT",
          "EXPORT",
          "DELIVERY",
          "TRADES",
          "SALARY",
          "REFUND",
          "OTHER"
        ]
      },
      "Payouts_v3_UnderlyingDocument": {
        "type": "object",
        "properties": {
          "type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_UnderlyingDocumentType"
              }
            ],
            "description": "Type of the document"
          },
          "reference_no": {
            "type": "string",
            "maxLength": "100",
            "description": "Reference number of the document"
          },
          "file_id": {
            "type": "string",
            "description": "File ID of the document"
          }
        }
      },
      "Payouts_v3_FailureCode": {
        "type": "string",
        "enum": [
          "INSUFFICIENT_BALANCE",
          "INVALID_DESTINATION",
          "DESTINATION_MAXIMUM_LIMIT",
          "ACCOUNT_NAME_MISMATCH",
          "REJECTED_BY_CHANNEL",
          "TEMPORARY_TRANSFER_ERROR",
          "TRANSFER_ERROR",
          "SLS_SENDER",
          "SLS_RECIPIENT"
        ]
      },
      "Payouts_v3_EntityType": {
        "type": "string",
        "enum": [
          "INDIVIDUAL",
          "BUSINESS"
        ]
      },
      "Payouts_v3_SenderDetails": {
        "type": "object",
        "properties": {
          "date_of_birth": {
            "type": "string",
            "format": "date",
            "description": "Date of birth"
          },
          "country_of_birth": {
            "type": "string",
            "description": "Country of birth. Format: ISO 3166-2 Country Code"
          },
          "nationality": {
            "type": "string",
            "description": "Nationality. Format: ISO 3166-2 Country Code"
          },
          "personal_id_type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PersonalIdType"
              }
            ],
            "description": "Personal ID type"
          },
          "personal_id_value": {
            "type": "string",
            "maxLength": "255",
            "description": "Personal ID value"
          },
          "personal_id_expiration_date": {
            "type": "string",
            "format": "date",
            "description": "Personal ID expiration date"
          },
          "personal_id_country": {
            "type": "string",
            "description": "Personal ID country of issuance. Format: ISO 3166-2 Country Code"
          },
          "personal_email": {
            "type": "string",
            "maxLength": "50",
            "format": "email",
            "description": "Personal email"
          },
          "personal_mobile_number": {
            "type": "string",
            "minLength": "7",
            "maxLength": "15",
            "description": "Personal mobile number. Supports E.164 international format and local formats"
          },
          "gender": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Gender"
              }
            ],
            "description": "Gender"
          },
          "occupation": {
            "type": "string",
            "maxLength": "50",
            "description": "Occupation"
          },
          "date_of_incorporation": {
            "type": "string",
            "format": "date",
            "description": "Date of incorporation of the business sender"
          },
          "registration_number": {
            "type": "string",
            "maxLength": "50",
            "description": "Registration number of the business sender"
          },
          "business_phone_number": {
            "type": "string",
            "minLength": "7",
            "maxLength": "15",
            "description": "Phone number of the business sender"
          },
          "nature_of_business": {
            "type": "string",
            "maxLength": "50",
            "description": "Nature of business"
          }
        }
      },
      "Payouts_v3_Address": {
        "type": "object",
        "properties": {
          "country": {
            "type": "string",
            "description": "Country. Format: ISO 3166-2 Country Code"
          },
          "province_state": {
            "type": "string",
            "maxLength": "255",
            "description": "Province, state or region"
          },
          "city": {
            "type": "string",
            "maxLength": "255",
            "description": "City, village or town"
          },
          "street_line1": {
            "type": "string",
            "maxLength": "255",
            "description": "Line 1 of street address e.g., building name and apartment number"
          },
          "street_line2": {
            "type": "string",
            "maxLength": "255",
            "description": "Line 2 of street address e.g., street number and name"
          },
          "postal_code": {
            "type": "string",
            "maxLength": "255",
            "description": "ZIP/Postal Code"
          }
        }
      },
      "Payouts_v3_Relationship": {
        "type": "string",
        "enum": [
          "BRANCH_REPRESENTATIVE_OFFICE",
          "BUSINESS_PARTNER",
          "CHILDREN",
          "CREDITOR",
          "CUSTOMER",
          "DEBTOR",
          "EMPLOYEE",
          "EX_SPOUSE",
          "FRANCHISEE_FRANCHISOR",
          "GRANDPARENTS",
          "HOLDING_COMPANY",
          "MAID",
          "OWNSELF",
          "PARENTS",
          "RELATIVE",
          "SIBLING",
          "SPOUSE",
          "SUBSIDIARY_COMPANY",
          "SUPPLIER",
          "FRIEND",
          "GOVERNMENT_BODY",
          "EDUCATION_INSTITUTION",
          "NON_GOVERNMENT_BODY",
          "OTHER"
        ]
      },
      "Payouts_v3_RecipientDetails": {
        "type": "object",
        "properties": {
          "date_of_birth": {
            "type": "string",
            "format": "date",
            "description": "Date of birth"
          },
          "country_of_birth": {
            "type": "string",
            "description": "Country of birth. Format: ISO 3166-2 Country Code"
          },
          "nationality": {
            "type": "string",
            "description": "Nationality. Format: ISO 3166-2 Country Code"
          },
          "personal_id_type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_PersonalIdType"
              }
            ],
            "description": "Personal ID type"
          },
          "personal_id_value": {
            "type": "string",
            "maxLength": "255",
            "description": "Personal ID value"
          },
          "personal_id_expiration_date": {
            "type": "string",
            "format": "date",
            "description": "Personal ID expiration date"
          },
          "personal_id_country": {
            "type": "string",
            "description": "Personal ID country of issuance. Format: ISO 3166-2 Country Code"
          },
          "personal_email": {
            "type": "string",
            "maxLength": "50",
            "format": "email",
            "description": "Personal email"
          },
          "personal_mobile_number": {
            "type": "string",
            "minLength": "7",
            "maxLength": "15",
            "description": "Personal mobile number. Supports E.164 international format and local formats"
          },
          "gender": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_Gender"
              }
            ],
            "description": "Gender"
          },
          "occupation": {
            "type": "string",
            "maxLength": "50",
            "description": "Occupation"
          },
          "date_of_incorporation": {
            "type": "string",
            "format": "date",
            "description": "Date of incorporation of the business recipient"
          },
          "registration_number": {
            "type": "string",
            "maxLength": "50",
            "description": "Registration number of the business recipient"
          },
          "business_phone_number": {
            "type": "string",
            "minLength": "7",
            "maxLength": "15",
            "description": "Phone number of the business recipient"
          },
          "nature_of_business": {
            "type": "string",
            "maxLength": "50",
            "description": "Nature of business"
          }
        }
      },
      "Payouts_v3_RecipientAccountDetails": {
        "type": "object",
        "required": [
          "currency",
          "account_country",
          "account_holder_name",
          "account_number",
          "routing_type_1",
          "routing_value_1"
        ],
        "properties": {
          "currency": {
            "type": "string",
            "description": "Currency of the account. Format: ISO 4217 Currency Code"
          },
          "account_country": {
            "type": "string",
            "description": "Account country code. Format: ISO 3166-2 Country Code"
          },
          "account_holder_name": {
            "type": "string",
            "maxLength": "255",
            "description": "Account name of the recipient's account"
          },
          "account_number": {
            "type": "string",
            "description": "Account number"
          },
          "routing_type_1": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_RoutingType1"
              }
            ],
            "description": "Routing code type"
          },
          "routing_value_1": {
            "type": "string",
            "description": "Routing type value"
          },
          "routing_type_2": {
            "type": "string",
            "description": "Routing code subtype (reserved for future supported corridors)"
          },
          "routing_value_2": {
            "type": "string",
            "description": "Routing subtype value"
          },
          "account_type": {
            "allOf": [
              {
                "$ref": "#/components/schemas/Payouts_v3_AccountType"
              }
            ],
            "description": "Account type"
          }
        }
      },
      "Payouts_v3_UnderlyingDocumentType": {
        "type": "string",
        "enum": [
          "INVOICE",
          "PURCHASE_ORDER",
          "CONTRACT",
          "DELIVERY_SLIP",
          "CUSTOMS_DECLARATION",
          "BILL_OF_LADING",
          "OTHERS"
        ]
      },
      "Payouts_v3_PersonalIdType": {
        "type": "string",
        "enum": [
          "BIRTH_CERTIFICATE",
          "BANK_STATEMENT",
          "DRIVING_LICENSE",
          "IDENTITY_CARD",
          "PASSPORT",
          "VISA",
          "BUSINESS_REGISTRATION",
          "BUSINESS_LICENSE"
        ]
      },
      "Payouts_v3_Gender": {
        "type": "string",
        "enum": [
          "MALE",
          "FEMALE",
          "OTHER"
        ]
      },
      "Payouts_v3_RoutingType1": {
        "type": "string",
        "enum": [
          "swift_code",
          "iban",
          "sort_code",
          "aba",
          "bsb",
          "wallet",
          "clabe"
        ]
      },
      "Payouts_v3_AccountType": {
        "type": "string",
        "enum": [
          "CHECKING",
          "SAVINGS"
        ]
      }
    }
  }
}
````

