Webhook APIs
Webhook Get Started#
Webhook is used to receive notifications from KazePay system.Retry Mechanism: When merchants get the callback ,they need to give a success response, otherwise we will call them 5 times in total. The intervals for webhook retries are: 1 minutes, 2 minutes, 4 minutes, 8 minutes, 16 minutes
.Register a new webhook#
Register a new webhook for receiving callback notifications from KazePay system.No | Field | Type | Required | Notes |
---|
1 | url | String | Y | Address for notification |
{
"url":"https://notify.receive/api"
}
{
"head": {
"apiCode": "setWebhookUrl",
"sysId": "202402271432298822660001",
"requestNo": "202412241536050554232157",
"version": "1.0",
"sign": "29589585d30e6bfca3e2588f61d67cf7ff0567f4c5ccc79ef954da66326be51***",
"keyEnc": "7c819f5751420b267a32c6b1bb95735a327dcb20ca1c2abcafaa5125604a8***"
},
"body":{
"encrypt":"zcNZ5RFgBASAcOX5sRYiMSTaYN/3iNv3HA3/FXJmVkCnzkECPIpaw7daqowwv*******"
}
}
No | Field | Type | Required | Notes |
---|
1 | encrypt | String | Y | Return values: SUCCESS FAILED |
2 | url | String | Y | Address for notification |
{
"encrypt":"SUCCESS",
"url":"https://notify.receive/api"
}
Response Message Example:{
"head": {
"apiCode": "setWebhookUrl",
"sysId": "202402271432298822660001",
"requestNo": "202412241536050554232157",
"version": "1.0",
"code": "SUCCESS",
"detail": "SUCCESS",
"sign": "50a7aca6d7a65f848535aaf6cbfa674583e103afea9db4863b6b47953670cf8***",
"keyEnc": "b25973f85c9ff6092b6647a6ed5603384e14a853c3a06b6cfde5ae55eb165***"
},
"body":{
"encrypt":"aB3OMZSBlWyaDsPMtU4w/4lI87EWiR1hPzEdBlp9WVvOTjeeX4ZxPy2o+9x1a***"
}
}
Query webhook#
{
"head": {
"apiCode": "getWebhookUrl",
"sysId": "202402271432298822660001",
"requestNo": "202412241536050554232157",
"version": "1.0",
"sign": "29589585d30e6bfca3e2588f61d67cf7ff0567f4c5ccc79ef954da66326be51***",
"keyEnc": "7c819f5751420b267a32c6b1bb95735a327dcb20ca1c2abcafaa5125604a8***"
},
"body":{
"encrypt":"zcNZ5RFgBASAcOX5sRYiMSTaYN/3iNv3HA3/FXJmVkCnzkECPIpaw7daqowwv*******"
}
}
No | Field | Type | Required | Notes |
---|
1 | encrypt | String | Y | Return values: SUCCESS FAILED |
2 | url | String | Y | Address for notification |
{
"encrypt":"SUCCESS",
"url":"https://notify.receive/api"
}
Response Message Example:{
"head": {
"apiCode": "getWebhookUrl",
"sysId": "202402271432298822660001",
"requestNo": "202412241536050554232157",
"version": "1.0",
"code": "SUCCESS",
"detail": "SUCCESS",
"sign": "50a7aca6d7a65f848535aaf6cbfa674583e103afea9db4863b6b47953670cf8***",
"keyEnc": "b25973f85c9ff6092b6647a6ed5603384e14a853c3a06b6cfde5ae55eb165***"
},
"body":{
"encrypt":"aB3OMZSBlWyaDsPMtU4w/4lI87EWiR1hPzEdBlp9WVvOTjeeX4ZxPy2o+9x1a***"
}
}
Delete webhook#
ApiCode: deleteWebhookUrl
{
"head": {
"apiCode": "deleteWebhookUrl",
"sysId": "202402271432298822660001",
"requestNo": "202412241536050554232157",
"version": "1.0",
"sign": "29589585d30e6bfca3e2588f61d67cf7ff0567f4c5ccc79ef954da66326be51***",
"keyEnc": "7c819f5751420b267a32c6b1bb95735a327dcb20ca1c2abcafaa5125604a8***"
},
"body":{
"encrypt":"zcNZ5RFgBASAcOX5sRYiMSTaYN/3iNv3HA3/FXJmVkCnzkECPIpaw7daqowwv*******"
}
}
No | Field | Type | Required | Notes |
---|
1 | encrypt | String | Y | Return values: SUCCESS FAILED |
Response Message Example:{
"head": {
"apiCode": "deleteWebhookUrl",
"sysId": "202402271432298822660001",
"requestNo": "202412241536050554232157",
"version": "1.0",
"code": "SUCCESS",
"detail": "SUCCESS",
"sign": "50a7aca6d7a65f848535aaf6cbfa674583e103afea9db4863b6b47953670cf8***",
"keyEnc": "b25973f85c9ff6092b6647a6ed5603384e14a853c3a06b6cfde5ae55eb165***"
},
"body":{
"encrypt":"aB3OMZSBlWyaDsPMtU4w/4lI87EWiR1hPzEdBlp9WVvOTjeeX4ZxPy2o+9x1a***"
}
}
Notify Details#
1.TRANSACTION_VERIFICATION_CODE#
No | Field | Type | Required | Notes |
---|
1 | cardID | String | Y | Card ID |
2 | time | String | Y | yyyy-MM-dd HH:mm:ss |
3 | code | String | Y | Transaction verification code |
Result decrypted json string
{
"cardID":"19181",
"time":"2024-11-29 02:42:12",
"code":"549811"
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
2.CARD_RECHARGE_RESULT#
No | Field | Type | Required | Notes |
---|
1 | cardID | String | Y | Card ID |
2 | time | String | Y | yyyy-MM-dd HH:mm:ss |
3 | currency | String | Y | Recharge currency |
4 | amount | Double | Y | Recharge amount |
5 | status | String | Y | Result: SUCCESS / FAILED |
6 | transactionId | String | Y | Transaction ID |
7 | sendCurrency | String | Y | Card Currency |
8 | sendAmount | Double | Y | Actual Amount to Card |
Result decrypted json string
{
"cardID":"19181",
"time":"2024-11-29 02:42:12",
"currency":"USD",
"amount":275.60,
"status":"SUCCESS",
"transactionId":"20241128102008673655",
"sendCurrency":"HKD",
"sendAmount":2147.76
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
3.CARD_3DS_AUTH_RESULT#
No | Field | Type | Required | Notes |
---|
1 | cardID | String | Y | Card ID |
2 | time | String | Y | yyyy-MM-dd HH:mm:ss |
3 | authId | String | Y | Auth Id |
4 | authResult | String | Y | Refer to Appendix Part 7 |
Result decrypted json string
{
"cardID":"19181",
"time":"2024-11-29 02:42:12",
"authId":"CT3DSA1508634777354273",
"authResult":"AUTHORIZATION_CANCELED"
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
4.USER_KYC_STATUS_CHANGE#
No | Field | Type | Required | Notes |
---|
1 | email | String | Y | user submitted KYC email address |
2 | time | String | Y | yyyy-MM-dd HH:mm:ss |
3 | status | String | Y | Refer to Appendix Part 6 |
4 | reason | String | Y | Reasons for KYC rejection |
Result decrypted json string
{
"email":"1234@gmail.com",
"time":"2024-11-24 17:57:41",
"status":"PASSED",
"reason":""
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
5.CARD_STATUS_CHANGE#
No | Field | Type | Required | Notes |
---|
1 | cardID | String | Y | Card ID |
2 | status | String | Y | Refer to Appendix Part 2 |
3 | reason | String | Y | |
Result decrypted json string
{
"cardID":"19181",
"status":"ACTIVE",
"reason":""
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
6.TRANSACTION_CREATED#
No | Field | Type | Required | Notes |
---|
1 | cardID | String | Y | Card ID |
2 | transactionId | String | Y | Transaction ID |
3 | transactionTime | String | Y | yyyy-MM-dd HH:mm:ss |
4 | cardCurrency | String | Y | Card currency type |
5 | cardCurrencyAmt | Double | Y | Card currency trans Amount |
6 | transCurrency | String | Y | Transaction currency type |
7 | transCurrencyAmt | Double | Y | Transaction currency trans Amount |
8 | transStatus | String | Y | Transaction status |
9 | transType | String | Y | Transaction type |
10 | merchantName | String | Y | Merchant name |
11 | respCode | String | Y | Response Code |
12 | respCodeDesc | String | Y | Response code Description |
13 | fee | Double | Y | Fee Amount |
14 | feeCurrency | String | Y | Fee currency |
Result decrypted json string
{
"cardID":"19181",
"cardCurrencyAmt":62.01,
"fee":0.00,
"feeCurrency":"HKD",
"transactionTime":"2024-12-23 03:08:51",
"transCurrency":"EUR",
"transactionId":"20241128102008673655",
"merchantName":"O DA RUBIA RIBEIRA",
"cardCurrency":"HKD",
"transType":"AUTH",
"transCurrencyAmt":7.60,
"transStatus":"PENDING"
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
7.CARD_ACTIVATION_CODE#
No | Field | Type | Required | Notes |
---|
1 | cardNo | String | Y | Card number |
2 | activationCode | String | Y | activation code, can only be obtained once |
Result decrypted json string
{
"cardNo":"4937240800070604",
"activationCode":"70795665"
}
Responses json string(No encryption needed)
{
"head":"",
"body":
{"encrypt":"SUCCESS "}
}
Modified at 2025-01-16 12:01:24