ENUM

VerificationStatus

Status of a given verification request.

link GraphQL Schema definition

1enum VerificationStatus {
2
3# Unknown is used as a safe fallback status.
4UNKNOWN
5
6# Pending indicates not yet successfully verified.
7PENDING
8
9# Verified indicates successfully verified.
10VERIFIED
11
12# Rejected indicates we were unable to send a verification request to the given
13# address, for example if we received a hard bounce from SES.
14REJECTED
15}