Push Back Notification

The purpose of this API is to notify payment status back to merchant.

After payment is completed, then PAYON will push back status to merchant URL to update status in merchant website. Merchant has to provide push back notification URL by passing noti_url

API URL

The API's url will base on NOTI_URL provide by merchant

API Direction

PAYON -> Merchant

API Method

Push Back Notification

POST {NOTI_URL}

Request Body

NameTypeDescription

txId

string

Merchant's transaction Identification

resultCode

string

Transaction result code(possible value 0000, 9999)

resultMsg

string

Transaction result message(possible value SUCCESS, ERROR)

Example Request

{
    "txId":"1620803885401000",
    "resultCode":"0000",
    "resultMsg":"Success"
}

Last updated