Get Kount Hash Value and Tokenize
Generate a Kount hash value that can be sent directly to Kount for fraud validation of a given PAN and return a TokenEx token.
URI: https://test-api.tokenex.com/FraudServices.svc/REST/GetKountHashValueAndTokenize
Request Parameters
Parameter | Type | Description |
---|---|---|
APIKey | string | See Authentication |
TokenExID | string | Your TokenEx ID |
Data | string | The data you wish to obtain a hash value for and tokenize |
Encrypted | bool | Indicator if the value supplied is encrypted If true, value is encrypted |
TokenScheme | Enum | See Standard Token Schemes |
{
"APIKey": "YourAPIKey",
"TokenExID": "YourTokenExID",
"Data": "WhatYouWantToTokenize",
"Encrypted": true,
"TokenScheme": 0
}
Response Parameters
Parameter | Type | Description |
---|---|---|
Token | string | The token as generated by TokenEx that references the sensitive data |
Hash | string | Hash value returned that can be sent to Kount |
Success | bool | Indicator if the result was successful or not |
ReferenceNumber | string | Reference number for the TokenEx transaction |
Error | string | Error Code and human-readable description |
{
"Error": "",
"ReferenceNumber": "15102913382030662954",
"Success": true,
"Hash": "545454E58W8101GXHU4U",
"Token": "545454587415454"
}