cURL
curl --request GET \ --url https://api.example.com/v1/customers/{customer_id}/recipients \ --header 'Authorization: Bearer <token>'
{ "recipients": [ { "iban": "<string>", "legal_name": "<string>", "country": "<string>", "city": "<string>", "legal_address": "<string>", "bic": "<string>", "bank": "<string>", "type": "business", "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "customer_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a", "intermediate_bic": "<string>", "intermediate_bank": "<string>", "intermediate_route": "<string>", "email": "[email protected]", "phone": "<string>", "reference": "<string>" } ], "total": 1, "has_more": true }
Retrieve all recipients with optional filtering
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
1 <= x <= 100
x >= 0
business
personal
2
Recipients retrieved successfully
Show child attributes