Funds
This endpoint allows you to retrieve the available funds of a customer across one or more countries. It can be used to quickly check the balance a customer holds in different regions, either filtered by specific countries or listing all countries where the customer has a presence.
Retrieve funds
Returns the available funds of a customer identified by customer_uuid in one or more countries. If the countries query parameter is not provided, the response will include all countries where the customer has available funds.
GET https://stage.api.payments.depay.us/v2/funds/customers?countries=AR,BR
Headers
Authorization*
String
Bearer Token.
Query Parameters
countries
String
Optional. Comma-separated list of country codes (e.g., AR, BR).
Response
country
String
Country code where the customer has funds.
fund
Number
Amount of available funds in that country.
[
{
"country": "AR",
"fund": 5000000.61
},
{
"country": "BR",
"fund": 1000000
}
]
{
"eventId": "BadRequest",
"detail": "One or more validation errors occurred.",
"correlationId": "e9119b1b-07ee-4734-8fb4-ceac60ecabc4",
"errores": [{
"code": "400",
"title": "",
"detail": "The X field is required."
}]
}{
"statusCode": 409,
"message": "Conflict error"
}Last updated