Receive payout result notificationSignature required
Zyla notifies you of the fund payout results with this interface.
You can set up the URL for receiving payout notifications by specifying the transferToDetail.transferNotifyUrl parameter when calling the createPayout API.
You need to acknowledge the reception of the notification; Otherwise, Zyla takes the notification delivery as unsuccessful and retries sending it up to 7 times. For more details, refer to the Result processing logic section.
Structure
A message consists of a header and body.
Request header parameters
Request parameters
transferResult Result REQUIRED
Indicates the result of the payout request.
transferRequestId String REQUIRED
The unique ID assigned by the Partner to identify a payout request.
More information:
- This field is an API idempotency field.For details about API idempotency, see the Idempotency chapter.
- Maximum length: 64 characters
transferId String REQUIRED
The unique ID assigned by Zyla to identify a payout.
More information:
- Maximum length: 64 characters
transferFinishTime DateTime REQUIRED
Indicates the finishing time of a payout.
More information:
- The value follows the ISO 8601 standard format. For example, "2019-11-27T12:01:01+08:00".
chargeMode String
Indicates the charge mode of service fee. Valid values are:
INNER_DEDUCT
:indicates service fee charged from the beneficiary.OUTER_DEDUCT
:indicates service fee charged from the payer.
transferFromDetail TransferFromDetail REQUIRED
Payout details submitted by the payer.
transferToDetail TransferToDetail REQUIRED
Payout details for the beneficiary.
Response parameters
result Result REQUIRED
Indicates whether this API is called successfully.
Request
Response
Result processing logic
The parameter transferResult.resultCode indicates the result of the payout. For more details, refer to the transferResult.resultCode section.
After receiving the notification, you need to send a response message to acknowledge the receipt of the notification.
Make sure you properly sign the message before sending the response. For details, refer to the Sign a request and validate the signature chapter.
For more details on the response header, refer to the API overview chapter.
The response body has the following fixed value:
In the absense of an ackowledgement reponse from you, Zyla will resend the result.
The following policy represents how Zyla makes retry attempts:
- Zyla retries notifications 7 times.
- Intervals between notifications: 2m, 10m, 10m, 1h, 2h, 6h, and 15h.
result.resultCode
Code | Value | Message | Further action |
---|---|---|---|
SUCCESS | S | Success | |
UNKNOWN_EXCEPTION | U | API failed due to unknown reason. | The service might be down, retry later. |
PROCESS_FAIL | F | A general business failure occurred. Do not retry. | Human intervention is usually needed. |
transferResult.resultCode
Code | Value | Message | Further action |
---|---|---|---|
SUCCESS | S | Success | |
PROCESSING | S | The transfer is in process. | Try again later. |
PROCESS_FAIL | F | A general business failure occurred. Do not retry. | Human intervention is usually needed. It is recommended that you contact our Technical Support Team to resolve the issue. |
USER_ACCOUNT_ABNORMAL | F | The user account status is abnormal. | Retry with a different user. If the issue persists, contact our Technical Support Team for more details. |
AMOUNT_EXCEED_LIMIT | F | The amount exceeds the limit. | Make sure the amount submitted is correct and retry. |
RISK_REJECT | F | The transfer is rejected for risk control reasons. | Prompt the user that the request is rejected because the risk control failed. |
ORDER_IS_CLOSED | F | The order is closed. | Retry with another payout order. |
ORDER_IS_REVERSED | F | The order is reversed. | Retry with another payout order. |
CARD_INFO_NOT_MATCH | F | The card information does not match. | Retry with another payout order. |
BALANCE_NOT_ENOUGH | F | Balance is not enough. | Make sure the balance is sufficient and retry. |
ORDER_NOT_FOUND | F | Order not found. | Retry with correct order information. |