Skip to main content

Notification Parameters

Method POST

URL
https://xxx/xxx/xxx.paymentNotiUrl
Field NameRequiredTypeDescription
SignatureYesStringContains the signature value of the message. The message originator is responsible for generating the signature, while the message receiver must verify it to ensure the integrity, authenticity, and non-repudiation of the message .

Please refer to Appendix 1.
sourceSystemYesStringThe system ID of the message originator.

Body

Please refer to Embed Code to encrypt the content and prepend the Message Type Indicator 0025 to the body.

Field NameRequiredTypeLengthDescriptionExample
msgVerYesString8Version number."1.0"
billerTypeYesString2Type of payment."AM" - Automated Machine
callerDeviceTypeYesString2Caller device type."17" - On-premises Car Parking System
"18" - Cloud-based Car Parking System
callerDeviceVerYesString8Application version number of the caller device."1"
sequenceNoYesString16A running message sequence number which unique within system on a calendar day and shall restart from 1 every day."202409288868"
mrnYesString40An unique reference number assigned by POS system to identify the original payment transaction."8e8c6e61-f9e4-40f0-a4a5-9e561579c901"
resultCodeYesString5Result code."00000"
authIdRespConditionalString16Authorization code from issuer/bank for approved transaction only. The consumer should use this code as the reference to the approved payment transaction."484684"
paymentSchemeConditionalString2Payment scheme of the transaction."AF" - Ant Financial (Alipay)
"JC" - JCB
"MC" - MasterCard
"PN" - Paynet (DuitNow)
"UP" - UnionPay (fka CUP)
"VS" - Visa
maskedPANConditionalString4Returned Masked PAN."443322XXX1234"
htrConditionalString20Host Transaction Reference.
paymentMethodConditionalNumber2The final payment method chosen by the customer to complete the payment."00" - KPOS will display all available payment method, the customer can then choose their preferred method to proceed.
"01" - Card payment
"04" - Duitnow QR payment (Merchant presented)
"08" - Alipay+ QR payment (Merchant presented)
advMsgNoString1000Advisory message from KPOS."..."

Example Request and Response Body

Remove the Message Type Indicator 0025 from the body and decrypt the content.

Before decryption
0025eyJlcGsiOnsia3R5IjoiRUMiLCJjcnYiOiJQLTI1NiIsImtpZCI6ImU4NmQ0Y2ZiLTFkNzMtNDJkNi05MGVlLWRlNWJlNjcwMjVlOSIsIngiOiI0UmxIeDAzX3ZlTURWaGFaTl91TVppZ2YzV1dPWGlveG52Zy1rRXhyMzFrIiwieSI6ImcyU1VqNkJnVHdYakxWYWlTRnVobGtSWklrMndaWlNaMWJEWG1DSTZSVXcifSwia2lkIjoiMTIzIiwiZW5jIjoiQTI1NkNCQy1IUzUxMiIsImFsZyI6ImRpciJ9..UIzHIjrFX8fPX91SEUzZpA.9hmtgLHx_UZjYTwduAtdruZB60QPRPjvczVeJwSI7tomXmEU720zuokvMdf9VxQqHOh2PHvtTtqW8OZQuIqYyDmss06ii-fy73a897AJv2KXPARY6DduoiLSJwDCJKhBiJlnZkAMyRZdB5xGzJwXL21QaXbO86EF6_d9qzrOhQvrNlfkTOBQYnv5Mhnnetda0_zm59HRMW2mg-rEOGj1W0Q4U0I8ZZrXQSxO3MnalxuzWQ4oTU2uHZrFnsyL93PeKiG_RmIszQGXqG0bN8WsoJfL0BTd20rnxldLQcSZYNdxGJw0EBGwlSp7DTpcmP1kzd1v2PzLGISZiPa9zadcVuLaODBZQ5GdHoPgIi76pTRwDJrv1CuD8ugfuuu_L5DxFIErnqs5cTONqxhCQ23ZeCSbnuDJDJju9yyr2wYoFFKQQciZmPddPgi2phew31DRjju4y4Ab6H7Vv01gqk6h2b9clR7v54wZSvR0CVROLZj79nKM1eLDhEo8JEv6T5APb2EHMTaU-sIlT-XqENbwV-A5HSEuEdvU7K3fsgioU5qJWwk9SS1WWmyqHnvCK1Rl5azJcKbfyN07a7znZD66IAoSUoCHjsqmFC4bd6ckdLA.Q3Ys35PhzHsnNnlJQ3rzwR-RsfEmYeDxXDsw9h97Azo
After remove Message Type Indicator and perform decryption
{
"msgVer": "1.0",
"billerType": "AM",
"callerDeviceType": "17",
"callerDeviceVer": "1",
"sequenceNo": "2022091511262185",
"mrn": "000000",
"resultCode": "8e8c6e61-f9e4-40f0-a4a5-9e561579c901",
"authIdResp": "484684",
"paymentScheme": "AM",
"maskedPAN": "443322XXX1234",
"htr": "",
"paymentMethod": "00"
}

Example Message

POST Request
curl -X POST "https://xxx/xxx/xxx.paymentNotiUrl" \
-H "Accept: application/json" \
-H "Content-Type: text/plain" \
-H "Signature: ..." \
-H "sourceSystem: ..." \
-d '0025eyJlcGsiOnsia3R5IjoiRUMiLCJ...'