OBJECT

PayoutRegistration

PayoutRegistration describes the personal information a user submitted while onboarding into a payout program.

link GraphQL Schema definition

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