fraudRiskLevel
Check if a given ID and type have a financial risk level.
Arguments
Returns
FinancialRiskLevelTypePossible Errors
Allowed Viewers
Query Complexity
1Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query FraudRiskLevel(
$identifierType: String!,
$identifierValue: String!
) {
fraudRiskLevel(
identifierType: $identifierType,
identifierValue: $identifierValue
) {
identifierType
identifierValue
isInRiskList
riskLevel
}
}
Variables
{
"identifierType": "admit-fight-see-somebody-other",
"identifierValue": "new-you-assume-parent-so"
}
Response
{
"data": {
"fraudRiskLevel": {
"identifierType": "guess-hospital-mind-age-ok",
"identifierValue": "14957652",
"isInRiskList": true,
"riskLevel": "1.0"
}
}
}