When a customer adds their card to Apple Pay, Google Pay your card issuer / processor must verify that the customer truly owns the card. This verification is done using an Activation Code (also called OTP for tokenization or Device Token Verification Code).
Request body:
"event": "applegoogletoken", "cid": "CODEGO20251106123", "activationCode": "123456", "tokenRequestorType": "", "cardLast4Digits": "1234",
Webhook Event: Field Details
-
event
Type: String Description: Specifies the type of webhook event being triggered. Used by the receiving system to determine how to process the payload.
-
cid
Type: String Description: A unique correlation or case identifier used to track the transaction or request across different systems.
-
activationCode
Type: String Description: A one-time activation code provided by the token service provider, typically used to verify or activate the card token.
-
tokenRequestorType
Type: String Description: Indicates the platform or service requesting the token, such as APPLE_PAY or GOOGLE_PAY.
-
-
cardLast4Digits
Type: String Description: The last four digits of the card number. Used for display and validation without exposing sensitive card information.