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

ParameterTypeDescription
APIKeystringSee Authentication
TokenExIDstringYour TokenEx ID
DatastringThe data you wish to obtain a hash value for and tokenize
EncryptedboolIndicator if the value supplied is encrypted

If true, value is encrypted
TokenSchemeEnumSee Standard Token Schemes
{
     "APIKey":"YourAPIKey",
     "TokenExID":"YourTokenExID",
     "Data":"WhatYouWantToTokenize",
     "Encrypted":true,
     "TokenScheme":0
}

Response Parameters

ParameterTypeDescription
TokenstringThe token as generated by TokenEx that references the sensitive data
HashstringHash value returned that can be sent to Kount
SuccessboolIndicator if the result was successful or not
ReferenceNumberstringReference number for the TokenEx transaction
ErrorstringError Code and human-readable description
{
     "Error":"",
     "ReferenceNumber":"15102913382030662954",
     "Success":true,
     "Hash":"150",
     "Token":"545454587415454"
}