- HTTP request
- Request body
- Response body
- GetBalanceAndLimitsResponse
- GetBalanceAndLimitsResult
- GetBalanceAndLimitsSuccess
Initiates a request for the current account balance associated with the association ID provided in the request. The return value contains the current balance and transaction limit data for the account.
If the endpoint encounters an error while processing the request, the response body from this endpoint should be of type
.ErrorResponse
An example request looks like:
{
"requestHeader": {
"protocolVersion": {
"major": 1,
"minor": 1,
"revision": 0
},
"requestId": "G112YZH4XPDV88J",
"requestTimestamp": "1481907920000"
},
"associationId": "LmddbXBsZSByZWZlcmVuY2UgdG9rZW4gdmFsdWU_"
}
An example response looks like:
{
"responseHeader": {
"responseTimestamp": "1481900013178"
},
"result": {
"success": {
"currentBalance": {
"amountMicros": "51000000",
"currencyCode": "USD"
},
"transactionMaxLimit": {
"amountMicros": "100000000",
"currencyCode": "USD"
},
"transactionMinLimit": {
"amountMicros": "500000",
"currencyCode": "USD"
},
"remainingDailyLimit": {
"amountMicros": "200000000",
"currencyCode": "USD"
},
"remainingMonthlyLimit": {
"amountMicros": "3000000000",
"currencyCode": "USD"
}
}
}
}
HTTP request
POST https://www.integratorhost.example.com/integrator-base-path/e-wallets-v1/getBalanceAndLimits
Request body
The request body contains data with the following structure:
JSON representation |
---|
{
"requestHeader": {
object ( |
Fields | |
---|---|
request |
REQUIRED: Common header for all requests. |
association |
REQUIRED: The associationId of the user's account, originally provided in the |
Response body
This method supports multiple return types. For additional information about what 4XX or 5XX HTTP status code to return with an ErrorResponse
, consult the ErrorResponse
object and HTTP status codes documentation.
Possible response messages | |
---|---|
HTTP 200 Status |
|
HTTP 4XX / 5XX Status |
|
GetBalanceAndLimitsResponse
Response object for the get balance and limits method.
JSON representation |
---|
{ "responseHeader": { object ( |
Fields | |
---|---|
response |
REQUIRED: Common header for all responses. |
result |
The result of the e-wallets-v1.getBalanceAndLimits call. |
GetBalanceAndLimitsResult
Result codes for e-wallets-v1.getBalanceAndLimits
.
JSON representation |
---|
{ // Union field |
Fields | |
---|---|
Union field
|
|
success |
Details if the request completed successfully. |
account |
User's account held with the integrator has been closed. |
account |
User's account with the integrator has been closed, suspected account take over. |
account |
User's account held with the integrator has been closed because of fraud. |
GetBalanceAndLimitsSuccess
Details of a successful api call.
JSON representation |
---|
{ "currentBalance": { object ( |
Fields | |
---|---|
current |
REQUIRED: The user's current balance, in micros. |
transaction |
OPTIONAL: The user's limit per transaction, in micros. |
transaction |
OPTIONAL: The minimum allowable transaction amount, in micros. |
remaining |
OPTIONAL: The amount available to the user before reaching daily transaction limits, in micros. |
remaining |
OPTIONAL: The amount available to the user before reaching monthly transaction limits, in micros. |