Current Balance Amount
Get balance information for each of your LocalPayment accounts
Current Balance Amount
GET https://api.stage.localpayment.com/api/accounts/:accountNumber/balance
Get the balance of each account
Path Parameters
Name
Type
Description
accountNumber*
string
Mandatory. Your account number
Headers
Name
Type
Description
Authorization*
string
Mandatory. JWT token in format Bearer eyJ0... . For more information about authentication, please refer to Authentication token.
{
"accountNumber": "032.840.00000004",
"currency": "USD",
"amount": 938093.1
}{
"detail": "You do not have permission to perform this action."
}Example: Balance
curl --location --request GET 'https://api.stage.localpayment.com/api/accounts/032.840.00000001/balance' \
--header 'Authorization: Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJIUzI1NiJ9.eyJ0b2tlbl90eXBlIjoiYWNjZXNzIiwiZXhwIjoxNjQ5MzY0MTk4LCJqdGkiOiI1Zjc3MzQwZDFmYTU0YjdiOTFiNWQ1Mjg5NjA5NjhmOCIsInVzZXJfaWQiOjMwLCJzdXBlcnVzZXIiOnRydWUsImlzX3N0YWZmIjpmYWxzZSwicm9sZXMiOlsiQUxMIl0sImNvdW50cmllcyI6WyJBTEwiXSwiY29tcGFueSI6IjAwMDEiLCJjbGllbnRfY29kZSI6IjAwMDEifQ.vR8N9f_DOYV4AKq8P4I6U7JqGa-6bHoUO6bJ4AokwoQ'{
"accountNumber": "032.840.00000001",
"currency": "USD",
"amount": 39552.47
}Last updated
Was this helpful?