OBJECT

VerificationRequest

Represents a user's request to verify a given contact method, such as email address or phone number.

link GraphQL Schema definition

1type VerificationRequest {
2
3# Address that the user is verifying. This will most likely be an email address or
4# phone number.
5address: String!
6
7# Key for the entity associated with the address. This is generally the Twitch ID
8# of the user.
9key: String!
10
11# Time at which the verification request was last modified.
12modified: Time!
13
14# Status of the verification request: pending, verified, or rejected.
15status: VerificationStatus!
16
17}