Tokenization Initiation
The first message CLOWD9 will receive from the Network is to validate the PAN is active and able to be tokenized.
CLOWD9 will respond direct to the Network and provide you with the outcome as follows:
Request
Field | Description | Format |
---|---|---|
event_type | Identifies the activity | UUID |
token_info | ||
dpan_id | The Identifier associated to the DPAN | UUID |
card_id | The Identifier associated to the Card | |
token_reference_id | Unique ID for the token associated with the PAN | UUID |
pan_reference_id | Network generated Identifier | |
client_id | The Identifier associated to the Client | UUID |
customer_id | The Identifier associated to the Customer | UUID |
network | Identifies the Network associated with the Wallet Provider | String |
status | The current status of the DPAN | String |
previous_status | The previous status of the dpan_id if applicable | string |
created_at | The date and time of the eligibility request | integer |
Example
{
"event_type": "EVENT_TYPE",
"token_info": {
"dpan_id": "cd7aef59-8fcf-4f48-95fd-5c93a8dbf3d5",
"card_id": "ab1d3c7a-7cfa-4d80-b0b0-4c45c2b2d9ab",
"token_reference_id": "4f3ac7e0-1d43-4e96-a60d-21a5931c3cf2",
"pan_reference_id": "f2d8e30f-6fbd-4d56-bdd3-8cb08f0b2d3f",
"client_id": "15c2e81b-cc4d-405f-ae95-2fdc3763c09a",
"customer_id": "15c2e81b-cc4d-405f-ae95-2fdc3763c09a",
"network": "Network",
"status": "INACTIVE",
"previous_status": ""
},
"created_at": 1718793600
}
Response
Field Name | Description | Format |
---|---|---|
status | Status of the web hook request. Should carry a static value of “ok” | String |
Example
{
"status": "ok",
}
Updated 4 days ago