- GatewayPay API Documentation
- Authentication
- Callbacks
- Testing
- Domains and IP Addresses
- Account
- H2H flow
- Refunds
- Cards Whitelist API
- APM - Deposits
- APM - Payouts
Get Account balances
GET
/account/balances
Request
Authorization
Send your HTTP requests with an
Authorization
header that contains the word Basic followed by a space and a base64-encoded string {{Username}}:{{Password}}Example:
Authorization: Basic *****************
Header Params
Host
string
required
Example:
{{BASE_API_URL}}
Responses
🟢200Get Account Balances
application/json
Body
data
object
required
type
string
required
id
string
required
attributes
object
required
links
object
required
Example
{
"data": {
"type": "account",
"id": "coma_xfepg37GYEWC8K6f",
"attributes": {
"currency_accounts": {
"EUR": {
"account_id": "comca_GZlIODMFC5QpjwHQ",
"active_balance": "0.00",
"pending_balance": "0.00",
"reserved_balance": "0.00",
"overdraft_limit": "0.00",
"balance_lower_limit": null
},
"USD": {
"account_id": "comca_VgaJCyOvlJvfUnWu",
"active_balance": "0.00",
"pending_balance": "0.00",
"reserved_balance": "0.00",
"overdraft_limit": "0.00",
"balance_lower_limit": null
},
"INR": {
"account_id": "comca_4R9jydtugsXqeAOt",
"active_balance": "0.00",
"pending_balance": "0.00",
"reserved_balance": "0.00",
"overdraft_limit": "0.00",
"balance_lower_limit": null
},
"GBP": {
"account_id": "comca_JIp8nG7Co7kB2XbQ",
"active_balance": "0.00",
"pending_balance": "0.00",
"reserved_balance": "0.00",
"overdraft_limit": "0.00",
"balance_lower_limit": null
}
}
},
"links": {
"self": "/api/account/balances"
}
}
}
Modified at 2024-10-09 12:46:12