INPUT_OBJECT

ValidateVerificationCodeInput

ValidateVerificationCodeInput is input required to verify a user contact method in EVS by validating their verification code.

link GraphQL Schema definition

1input ValidateVerificationCodeInput {
5
2# Address that the user is verifying. This will most likely be an email address or
3# phone number.
4address: String!
8
6# Code used to validate if the verification request is valid.
7code: String!
12
9# Key for the entity associated with the address. This is generally the Twitch ID
10# of the user.
11key: String!
13}