Account Inquiry Result Notification
- Endpoint:
POST /accountInquiryResultNotifyUrl - Tags: Indonesia SNAP/Disbursement
Description
You do not need to request this url. The following request.body is the callback content from PayerMax regarding the order status. Upon receiving a callback for any order status, you must respond with: {"msg": "Success","code": "SUCCESS"}. This response only acknowledges that the callback has been received.
Parameters
| Field | In | Type | Required | Constraints | Description |
|---|---|---|---|---|---|
Content-Type | header | string | Yes | Media type of the resource. | |
X-SIGNATURE | header | string | Yes | Represents signature of a request. | |
sign | header | string | Yes | 签名信息请参考技术文档 |
Parameter Examples
Content-Type:"application/json"X-SIGNATURE:""sign:"FPFVT3o227JrFRbqu19boZCpVVTF9KznxyRawUmxpfXilHV/0yK46haPhAjNu1hPUMy7Vw/ILXhfzffNm4Fj0apWknlTY9OJxnSoQxS9BTFtc61tn5yV1q69x/kkBl82/qwg+XTJ4fOzy7Mar3VaC1E2PlDA6RkkKBUyNE6RYgsdB+Su7an4+4HVTNAnoe74WyvBgxTLMNg28igBTdqxaO3w/UBY6ObVp7vkqkQGdL1Y+HgmMYaAVwrM3+ALWGId0sJ+YqTY4WJ+0xCRGhaSnybiIjZsQEYyID68WNUfuavDLDsEhaMm/HfQvf5p0R1Ltovp3wwJnEbQcjY458iX5A=="
Request Body
Required
Content-Type: application/json
| Field | Type | Required | Constraints | Description | Enum |
|---|---|---|---|---|---|
responseCode | string | Yes | Callback notification code, APPLY_SUCCESS means this is a valid callback. | ||
responseMessage | string | Yes | Callback notification description:Success. | ||
beneficiaryAccountName | string | No | maxLength: 512 | Payee full name. | |
beneficiaryAccountNumber | string | Yes | maxLength: 128 | Payee account, fill in the corresponding account number according to the payment method. | |
additionalInfo | object | Yes | |||
additionalInfo.isVirtualAccount | boolean | No | Whether it is a virtual account? true/false | ||
additionalInfo.status | string | Yes | maxLength: 32 | SUCCESS/INVALID_ACCOUNT_NUMBER/SUSPECTED_ACCOUNT/BLACK_LISTED/FAILED/CLOSED | |
partnerReferenceNo | string | Yes | maxLength: 64 | Merchant Order Id, a unique identifier for a merchant transaction, must not be duplicated and can only contain letters, numbers, and underlines. | |
referenceNo | string | Yes | PayerMax transaction serial Order Number. | ||
beneficiaryBankCode | string | Yes | maxLength: 64 | Target organization. |
Example
json
{
"beneficiaryAccountName": "TEST USER",
"beneficiaryAccountNumber": "1234567890",
"additionalInfo": {
"isVirtualAccount": false,
"status": "SUCCESS"
},
"partnerReferenceNo": "20260825152920150100122",
"referenceNo": "202608251221920150100123",
"beneficiaryBankCode": "BCA",
"responseCode": "APPLY_SUCCESS",
"responseMessage": "Success."
}Responses
200
| Field | Type | Required | Constraints | Description | Enum |
|---|---|---|---|---|---|
msg | string | Yes | Response message. | ||
code | string | Yes | Response code. |
Response Example
json
{
"msg": "Success",
"code": "SUCCESS"
}