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 one of three responses 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 object.Object
dpan_idIdentifier associated to the device token.UUID
card_idIdentifier associated to the card being tokenized.UUID3d0229b5-8330-4c62-be60-d8a5ba2f605d
token_reference_idThe Network identifier associated to the Token.stringDNITHE302521033484727131
pan_reference_idThe Network identifier associated to the PAN.stringV-3025197339880335891989
client_idThe Identifier associated to the card.UUID82d890aa-f083-4359-a1c8-5cd483ba40e8
networkThe network associated with the BIN and card_id
  • visa
  • mastercard
  • discover
stringvisa
status
  • inactive_ in Approve Provisioning context.
stringinactive
previous_status
  • empty in Approve Provisioning context.
string
deviceobject
device_idThe Identifier associated with the device.In 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 device.stringZGVmYXVsdA..
os_typeIdentifies the device OS type.string
os_versionIdentifies the device OS version.string
typeIdentifies the type of device.stringMOBILEPHONE_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
action

The 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_mode

Method 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"
}

Did this page help you?