cURL
curl --request GET \ --url https://api.example.com/customer/accounts/deposit-locations/{account_id} \ --header 'X-API-NONCE: <x-api-nonce>' \ --header 'X-API-SIGNATURE: <x-api-signature>' \ --header 'X-API-SUBSCRIPTION-KEY: <x-api-subscription-key>' \ --header 'X-API-TIMESTAMP: <x-api-timestamp>'
{ "message": "<string>", "data": [ { "location_id": 123, "name": "<string>", "city_and_state": "London, CA", "balance": 1000 } ], "as_of_date": "<string>", "pagination": { "limit": 123, "total": 123, "offset": 123 } }
Given an account number, retrieve its deposit locations from a financial provider.
Signature header
Timestamp header
Nonce header
Account ID header
Page number for pagination
Number of transactions per page
Load date
Successful Response
Show child attributes
As of date for the data
Represent the pagination structure.