Card 3DS OTP
This template will be triggered when 3DS enabled transaction is initiated.
https://<customerHost:Port>/webhook
Headers:
Field | Description |
---|---|
Content-Type | application/json |
Example Request:
curl --location --request POST 'https://<customerHost:Port>/webhook' \
-H 'content-type: application/json' \
-d '{
"otp":"112233",
"clientHashId":"0498f10f-1968-494f-9f7a-454ed23942a0",
"customerHashId":"2e096369-d93d-424b-93b8-1e7e14399b44",
"cardHashId":"04390049-f005-4909-a307-9db59ca6e207",
"cardNumber":"4001-35xx-xxxx-1950",
"transactionCurrency":"SGD",
"transactionAmount":"10.00",
"merchantName":"Frankie Tibbs",
"template":"CARD_3DS_OTP_WEBHOOK"
}'
Request Body:
Fields | Description | Type |
---|---|---|
otp | This is the 3DS OTP for the transaction. | UUID |
clientHashId | Unique client identifier generated and shared before API handshake. | UUID |
customerHashId | Unique customer identifier generated on customer creation. | UUID |
walletHashId | Unique wallet identifier generated simultaneously with customer creation. | UUID |
cardHashId | Unique card identifier generated while new/add-on card issuance. | UUID |
cardNumber | This field contains the 16-digit masked card number in format 1234-56xx-xxxx-3456. | String |
transactionCurrency | This field contains the 3-letter ISO-4217 transaction currency code. | String |
transactionAmount | This field contains the transaction amount. | String |
merchantName | This field contains the merchant name. | String |
template | The value for this field is CARD_3DS_OTP_WEBHOOK. | String |
Updated 6 days ago