GET
/
receivers
/
{receiverId}
/
bank-accounts
curl --request GET \
  --url https://extensions-sandbox.lumx.io/payments/receivers/{receiverId}/bank-accounts \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": "ba_000000000000",
    "name": "Default Account",
    "type": "pix",
    "pixKey": "14947677768",
    "beneficiaryName": "Individual full name or business name",
    "routingNumber": "012345678",
    "accountNumber": "1001001234",
    "accountType": "checking",
    "accountClass": "individual",
    "country": "BR",
    "city": "Marshfield",
    "stateProvinceRegion": "MA",
    "addressLine1": "738 Plain St",
    "addressLine2": "Building 22",
    "postalCode": "02050"
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

receiverId
string
required

Response

200 - application/json

The response is of type object[].