Resend Notification
Resend Notification is used to send the notification for the last status of the transaction. Due to some technical issues, if the regular notification was missed, this service can be used to invoke a notification for a given set of transaction ids to get their final status.
POST https://sandbox.payabl.com/pay/backoffice/send_notification
In your request, include the following parameters:
merchantid
transactionid
signature
Where transactionid
can be comma-separated but they should belong to the same paymentid
or else the notification will not be sent.
Request example
merchantid=gateway_test3d&transactionid=104837645&signature=dee444019deb527d82b1d21bf5d0a866a2ac7d25
Response example
<response>
<process>
<error_message></error_message>
<process_time>06.02.2023 11:36:47</process_time>
<status>0</status>
</process>
<transaction>
<notification_status>
<transaction_id_1>
<error_code>0</error_code>
<error_message></error_message>
<notification_sent>SUCCESSFULL</notification_sent>
<transaction_id>104837645</transaction_id>
</transaction_id_1>
</notification_status>
</transaction>
</response>
Updated about 1 year ago