Navigation

The evaluation object

Attributes


fingerprint_id string

The unique identifier of the fingerprint.


verdict string

The verdict of the evaluation. Can be challenge, allow, restrict, challenge_and_restrict, or deny.

Possible enum values
challenge

The action should be evaluated with a challenge. A challenge_id will be present in the response.


allow

The action should be allowed.


restrict

The action should be restricted.


challenge_and_restrict

The action should be restricted and a challenge should be issued.


deny

The action should be denied.


reasons array

The reasons for the verdict.


metadata object

The metadata for the evaluation.

Child parameters
metadata.email object

The metadata for the email.


challenge_id string (optional)

The unique identifier of the challenge.

The evaluation object
{
  "fingerprint_id": "649873be6e8b6f9b33722a0c",
  "verdict": "challenge",
  "reasons": ["new_fingerprint", "new_ip"],
  "challenge_id": "649873be6e8b6f9b33722a0c",
  "metadata": {
    "email": {
      "status": "valid",
      "regexp": false,
      "normalized_email": "user@example.com",
      "gibberish": false,
      "disposable": false,
      "webmail": false,
      "mx_records": false,
      "smtp_server": false,
      "smtp_check": false,
      "accept_all": false,
      "block": false
    }
  }
}