> For the complete documentation index, see [llms.txt](https://trueguard.gitbook.io/trueguard/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://trueguard.gitbook.io/trueguard/reference/api-reference/verification.md).

# Verification

{% openapi src="/files/8mUV7i106CupMH8hMODz" path="/verification" method="post" %}
[trueguard-swagger-fixed.yaml](https://965613209-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FX8eIvMOQ717pJYQprOpN%2Fuploads%2FKa6ZsCjQm4EVALaBAV0r%2Ftrueguard-swagger-fixed.yaml?alt=media\&token=671528d3-f6fe-4464-a28d-608cf5c9734b)
{% endopenapi %}

{% tabs %}
{% tab title="200 with IP example" %}

```json
{
  "temporaryEmail": true,
  "emailRiskScore": 100,
  "vpn": true,
  "ipType": "residential",
  "country": "United States",
  "ipRiskScore": 66,
  "action": "deny",
  "reasons": ["temporary_email", "vpn_ip"]
}
```

{% endtab %}

{% tab title="200 without IP example" %}

```json
{
  "temporaryEmail": true,
  "emailRiskScore": 100,
  "action": "deny",
  "reasons": ["temporary_email_domain"]
}
```

{% endtab %}
{% endtabs %}

{% hint style="info" %}
Action types\
\
**allow** - The user is considered safe

\
**quarantine** - Trueguard strongly suspects the email might be temporary, but isn't completely certain. Limiting access or manual review is recommended. This usually occurs with temporary emails from Gmail, Hotmail, etc. where email name patterns are analyzed.

**deny** - Trueguard is sure that the email, domain, or IP address is suspicious and that user access to the service should be denied or reviewed.
{% endhint %}
