INPUT_OBJECT

RegisterPayoutInformationInput

RegisterPayoutInformationInput is the input required to register a user's payout information during payout onboarding.

link GraphQL Schema definition

1input RegisterPayoutInformationInput {
4
2# Birthdate submitted by the user while registering into a payout program.
3birthdate: Time!
7
5# City submitted by the user while registering into a payout program.
6city: String!
10
8# Company Name submitted by the user while registering into a payout program.
9companyName: String
14
11# Country Code (ISO-3166) submitted by the user while registering into a payout
12# program.
13countryCode: String!
17
15# Email submitted by the user while registering into a payout program.
16email: String!
20
18# First Name submitted by the user while registering into a payout program.
19firstName: String!
23
21# Last Name submitted by the user while registering into a payout program.
22lastName: String!
26
24# Middle Name submitted by the user while registering into a payout program.
25middleName: String
30
27# Parent Email submitted by the under age user while registering into a payout
28# program.
29parentEmail: String
34
31# Parent Name submitted by the under age user while registering into a payout
32# program.
33parentName: String
37
35# Postal submitted by the user while registering into a payout program.
36postal: String
40
38# State Code submitted by the user while registering into a payout program.
39stateCode: String
43
41# Primary Address submitted by the user while registering into a payout program.
42streetAddress: String!
46
44# Secondary Address submitted by the user while registering into a payout program.
45streetAddress2: String
49
47# TargetUserID is the ID of the user whose payout information will be registered.
48targetUserID: ID!
50}