inquiryBalance
POST
: /aps/api/business/fund/inquiryBalanceSignature required
The Partner can use the inquiryBalance interface to query prefunding balance after making offline deposits.
The best practice is to utilize this interface twice before initializing a transfer:
- After the Partner sends the prefunding deposits to WorldFirst(Alipay), the Partner should use the inquiryBalance interface to check if WorldFirst(Alipay) receives and credits the prefunding deposits or not.
- When the Customer makes a transfer request, the Partner should use the inquiryBalance interface to check the prefunding balance once again to ensure prefunding balance is sufficient.
Structure
A message consists of a header and body. The following sections are focused on the body structure. For the header structure, see:
Request parameters
Field | Data type | Required | Description |
currency | String | Yes | The 3-character ISO-4217 currency code of the currency of the prefunding balance. More information:
|
transferFactor | TransferFactor object | Yes | Indicates different scenarios for the transfer, such as: remitting to China in CNY, or remitting to countries/regions other than China. Note:
|
Response parameters
Field | Data type | Required | Description |
result | Result object | Yes | Indicates whether this API is called successfully. |
balance | Array<Amount object> | Yes | Information on the prefunding balance. |
transferFactor | TransferFactor object | Yes | Indicates different scenarios for the transfer, such as: remitting to China in CNY, or remitting to countries/regions other than China. |
Result processing logic
After calling the API, a response is returned. The possible responses for result.resultStatus
are:
Result status | Description |
S | This indicates the API call succeeded. |
F | This indicates the API call failed. For more information on why the call failed, see |
U | This indicates the API call result is unknown. The Partner can make another API call. Use the following query strategy:
If none of the queries is successful, contact WorldFirst(Alipay) Technical Support. |
Result codes
result.resultCode
resultCode | resultStatus | resultMessage | Further action |
SUCCESS | S | Success | |
PROCESS_FAIL | F | A general business failure occurred. Do not retry. | Human intervention is usually needed. It is recommended that you contact WorldFirst Technical Support to resolve the issue. |
PARAM_ILLEGAL | F | Illegal parameters exist. For example, a non-numeric input, or an invalid date. | Check and verify whether the request fields, including the header fields and body fields, are correct and valid. For details on the fields of each API, see the specific API Structure section. |
KEY_NOT_FOUND | F | The key is not found. | This indicates that the client ID in the request has no matching key on the server, or the client ID exists but the RSA key is not configured. |
ACCESS_DENIED | F | The access is denied. | Contact Alipay Technical Support for detailed reasons. |
REQUEST_TRAFFIC_EXCEED_LIMIT | U | The request traffic exceeds the limit. | Call the interface again to resolve the issue. If not resolved, contact Alipay Technical Support. |
INVALID_API | F | The called API is invalid or not active. | Check whether the correct API is being called. |
INVALID_CLIENT | F | The client is invalid. | The Client ID does not exist or is invalid. |
INVALID_SIGNATURE | F | The signature is invalid. | Make sure the request is properly signed with a valid signature. For more details, refer to the following chapter:
|
METHOD_NOT_SUPPORTED | F | The server does not implement the requested HTTP method. | Ensure the HTTP method is |
MEDIA_TYPE_NOT_ACCEPTABLE | F | The server does not implement the media type that is acceptable to the client. | Retry with the correct media type. |
REPEAT_REQ_INCONSISTENT | F | Repeated requests are inconsistent. | Ensure all the fields in the requests are the same and retry. |
UNKNOWN_EXCEPTION | U | The API call is failed, which is caused by unknown reasons. | The service might be down, retry later. If the issue persists, contact WorldFirst Technical Support. |
UN_SUPPORT_BUSINESS | F | Unsupported business. | Invalid parameters are used e.g. currency is incorrect. Retry with the correct information. |
Samples
Request
{
"transferFactor": {
"transferFundType": "GLOBAL_GLOBAL_SERVICE"
},
"currency": "CNY"
}
Response
{
"balances": [{
"currency": "CNY",
"value": "50000"
}],
"result": {
"resultCode": "SUCCESS",
"resultMessage": "Success",
"resultStatus": "S"
},
"transferFactor": {
"transferFundType": "GLOBAL_GLOBAL_SERVICE"
}
}