Approve Provisioning

Following the Tokenization Initiation and the acceptance of the Terms and Conditions by the Customer, the Network will request approval from CLOWD9.

CLOWD9 will carry out further card validation steps based on the:

  • Primary Account Number status
  • CVV2 and Expiry
  • Risk criteria as per your configurations

Following these checks, CLOWD9 will respond with on of three respond based on the risk criteria configured as follows:

  • Approved (reason code 00): This will result in the token creation in an inactive status via the Network, known as the Green Flow. Further verification is not required and the next step will be Token Activation
  • No Reason to Decline (response code 85): The Network will progressing with the token creation in an inactive status; however further Customer Verification will be required. This is known as the Yellow Flow and will require Cardholder Verification methods to be provided as per the next step
  • Declined (response code will depend on the reason for the Decline): As a result of the decline, the Customer will not be able to tokenize their card. They will be required to re-start the process

Where you are involved in the Approve Provisioning Request, CLOWD9 decision only applies if no decision is received from you.

Request

FieldDescriptionFormatExample
token_infoToken Information objectObject
dpan_idIdentifier associated to the device tokenUUID
card_idIdentifier associated to the card being tokenizedUUID3d0229b5-8330-4c62-be60-d8a5ba2f605d
token_reference_idThe Network identifier associated to the TokenstringDNITHE302521033484727131
pan_reference_idThe Network identifier associated to the PANstringV-3025197339880335891989
client_idThe Identifier associated to the cardUUID82d890aa-f083-4359-a1c8-5cd483ba40e8
networkThe network associated with the BIN and card_id

- visa
- mastercard
- discover
stringvisa
statusinactive in Approve Provisioning context stringinactive
previous_status*empty in Approve Provisioning contextstring
deviceobject
device_idThe Identifier associated with the deviceIn this context it will be empty.
identifierThe Identifier associated to the device provided by the Network 7VnCWhDb98QXaHFNbx75e0z9
indexThe index provided by the Network string0
nameThe name associated to the devicestringZGVmYXVsdA..
os_typeIdentifies the device OS type string
os_versionIdentifies the device OS versionstring
typeIdentifies the type of devicestringMOBILEPHONE_OR_TABLET
decisions
cvv2The outcome of the CVV2 validation:
M =CVV2 matches
N =CVV2 does not match
P = not provided
empty = not provided
stringM
avsThe outcome of the AVS check:
M = Address matches
N =Address does not match,
P = not provided
empty = not provided
stringM
actionThe outcome of the Provisioning request:

00 - APPROVED (Green Flow )

85 - REQUIRE_ADDITIONAL_AUTHENTICATION (Yellow Flow )

05 - DECLINED (Red Flow)
stringAPPROVED
errorWill provide additional information when the Provisioning request has be declined. For example: "Invalid CVV2"string
cardholder_infoobject
high_value_customerIndicates if the Customer is a high-value customer:
true
false
booleanfalse
risk_assessment_scoreRisk assessment score for the customer. Values are 0 - 9 string0
pan_entry_modeMethod used to enter the PAN during tokenization:

KEY_ENTERED
ON_FILE
MOBILE_BANKING_APP
TOKEN
CHIP_DIP
CONTACTLESS_TAP
stringKEY_ENTERED
life_cycle_trace_idNetwork trace ID for lifecycle tracking string305216474470842
created_datetime1754313056

Example

Approve provisioning example request

{
  "cardholder_info": {
    "high_value_customer": false,
    "risk_assessment_score": "9"
  },
  "created_datetime": "1754313056",
  "decisions": {
    "action": "85",
    "avs": "",
    "cvv2": "M"
  },
  "device": {
    "identifier": "7VnCWhDb98QXaHFNbx75e0z9",
    "index": "0",
    "name": "ZGVmYXVsdA..",
    "os_type": "",
    "os_version": "",
    "type": "MOBILEPHONE_OR_TABLET"
  },
  "life_cycle_trace_id": "305216474470842",
  "pan_entry_mode": "KEY_ENTERED",
  "token_info": {
    "card_id": "47277b0d-2aa6-48ab-a2f5-7a5dababf2f8",
    "client_id": "82d890aa-f083-4359-a1c8-5cd483ba40e8",
    "network": "visa",
    "pan_reference_id": "V-3025197339880335891989",
    "previous_status": "",
    "status": "inactive",
    "token_reference_id": "DNITHE302521033484727131"
  }
}

Expected Response

Example 1: Approved

{
  "action": "00",
  "card_id": "47277b0d-2aa6-48ab-a2f5-7a5dababf2f8",
  "token_reference_id": "DNITHE302521033484727131"
}

Example 2: No Reason to Decline

{
  "action": "85",
  "card_id": "47277b0d-2aa6-48ab-a2f5-7a5dababf2f8",
  "token_reference_id": "DNITHE302521033484727131"
}

Example 3: Declined

{
  "action": "05",
  "card_id": "47277b0d-2aa6-48ab-a2f5-7a5dababf2f8",
  "token_reference_id": "DNITHE302521033484727131"
}