Skip to main content
GET
/
v1
/
payouts
/
requirements
Get beneficiary field requirements for a currency
curl --request GET \
  --url https://api.example.com/v1/payouts/requirements \
  --header 'Authorization: Bearer <token>'
{
  "optional": [
    "email",
    "addressLine2",
    "countrySubdivision"
  ],
  "required": [
    "address",
    "city",
    "postcode"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.zuba.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter Auth0 JWT token

Query Parameters

currency
string
required

Destination currency (e.g. NGN, EUR, USD, GBP)

Example:

"NGN"

Response

Beneficiary field requirements for the currency

optional
string[]
required

Fields that may optionally be provided

Example:
[
  "email",
  "addressLine2",
  "countrySubdivision"
]
required
string[]
required

Fields that must be provided for this corridor

Example:
["address", "city", "postcode"]