Notifications payment
What your webhook implementation will receive when placing a payment
Body
Required
-
reason
string Reason for failure if there is one
-
thirdPartyReference
string Third-party reference you provided when the order or payment was placed.
-
businessLocationId
integer(int64) The unique identifier for the business location.
-
ikentooAccountIdentifier
string The K-series account identifier for a SUCCESS event (V3 format)
-
iKentooAccountId
integer(int64) Deprecated The K-series account identifier for a SUCCESS event (V2 format)
-
status
string Status of the order or payment operation.
Values are
SUCCESS
orFAILURE
. -
type
string Notification type
Default value is
PAYMENT
.
Request examples
successful
{
"type": "PAYMENT",
"status": "SUCCESS",
"ikentooAccountId": "2114502594134196",
"businessLocationId": 247158188015618,
"thirdPartyReference": "REF11",
"ikentooAccountIdentifier": "A123080.14"
}
{
"type": "PAYMENT",
"reason": "the payment amount is greater than the amount due",
"status": "FAILURE",
"businessLocationId": 141948669832802,
"thirdPartyReference": "REF12212",
"ikentooAccountIdentifier": "A78094.73"
}