Tokenization challenge sent
Event that occurs during tokenization, when customer is challenged via SMS, email, or app to confirm provisioning. See the Card tokenization flow and events guide for more information.
Type: object
Domain: cards-tokenization
Event: send_challenge
Version: 1
|
card_id required
Title: Card ID.
Description: Pismo card ID
Type: integer
Example:
42488842
otp_type required
Title: One time passcode type
Description: OTP (one-time passcode) challenge customer selected for token provisioning.
Type: string
Example:
OTPSMS
OTPEMAIL
otp_value required
Title: One time passocde value
Description: Value customer has to enter to confirm tokenization.
Type: string
Example:
948472
token_id required
Title: Token ID.
Description: Pismo-created token ID.
Type: integer
Example:
42488842
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"title": "Tokenization challenge sent",
"description": "Event that occurs during tokenization, when customer is challenged via SMS, email, or app to confirm provisioning. See the <a href='https://developers.pismo.io/pismo-docs/docs/physical-card-embossing' target='_blank'>Card tokenization flow and events</a> guide for more information.",
"properties": {
"card_id": {
"title": "Card ID.",
"description": "Pismo card ID",
"type": "integer",
"examples": [
42488842
]
},
"otp_type": {
"title": "One time passcode type",
"description": "OTP (one-time passcode) challenge customer selected for token provisioning.",
"type": "string",
"examples": [
"OTPSMS",
"OTPEMAIL"
]
},
"otp_value": {
"title": "One time passocde value",
"description": "Value customer has to enter to confirm tokenization.",
"type": "string",
"examples": [
"948472"
]
},
"token_id": {
"title": "Token ID.",
"description": "Pismo-created token ID.",
"type": "integer",
"examples": [
42488842
]
}
},
"required": [
"card_id",
"token_id",
"otp_type",
"otp_value"
]
}
{
"card_id": 42488842,
"otp_type": "OTPSMS",
"otp_value": "948472",
"token_id": 42488842
}
Updated 23 days ago