cURL
curl --request GET \ --url https://api.example.com/customer/account/{account_id}/deposit-locations \ --header 'X-API-KEY: <x-api-key>' \ --header 'X-API-NONCE: <x-api-nonce>' \ --header 'X-API-SIGNATURE: <x-api-signature>' \ --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": "<unknown>" } }
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
Location ID
Location name
Location city and state
"London, CA"
Deposit amount
As of date for the data
Represent the pagination structure.
Limit number of items
Total number of items
Offset number of items