This template is triggered when a settlement credit occurs.
https://<customerHost:Port>/webhook
Field | Description |
---|
Content-Type | application/json |
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"clientHashId":"0498f10f-1968-494f-9f7a-454ed23942a0",
"customerHashId":"18f3046c-17e8-4c8b-9fbd-9508305f37b5",
"walletHashId":"6da29616-29f4-4cb2-ba46-24ca7f294bd8",
"cardHashId":"00c31858-6a79-4bc2-bde5-5fd633aa20bd",
"transactionDate":"2020-11-19 12:05:06",
"authCurrency":"SGD",
"authAmount":"1.00",
"authCode":"417224",
"originalAuthCode":"417224",
"template":"CARD_SETTLEMENT_CREDIT_WEBHOOK"
}'
Fields | Description | Type |
---|
clientHashId | The unique client identifier that's generated and shared before API handshake. | UUID |
customerHashId | The unique customer identifier that's generated on customer creation. | UUID |
walletHashId | The unique wallet identifier that's generated simultaneously with customer creation. | UUID |
cardHashId | The unique card identifier that's generated during new/add-on card issuance. | UUID |
transactionDate | The transaction date and time in the yyyy-MM-dd HH:mm:ss Coordinated Universal Time format. | String |
authCurrency | This field contains the three-letter ISO-4217 authorization currency code. | String |
authAmount | This field contains the authorization amount for the transaction. | String |
authCode | This field contains the authorization code of the transaction. | String |
originalAuthCode | This field contains the authorization code of the original transaction. | String |
template | The value for this field is CARD_SETTLEMENT_CREDIT_WEBHOOK . | String |