OBJECT

PayoutInvite

PayoutInvite describes a user's invite to a payout program.

link GraphQL Schema definition

1type PayoutInvite {
2
3# The payout program category the user has been invited to.
4category: PayoutOnboardingCategory
5
6# A PayoutInvite's unique ID.
7id: ID!
8
9# Whether or not this payout invite is for the affiliate program.
10isForAffiliate: Boolean!
11
12# Whether or not this payout invite is for the extensions developer program.
13isForExtensionsDeveloper: Boolean!
14
15# Whether or not this payout invite is for the partner program.
16isForPartner: Boolean!
17
18# Whether or not the payout invite was created through the legacy onboarding flow.
19isLegacy: Boolean!
20
21# The payout onboarding workflow for this payout invite.
22workflow: PayoutOnboardingWorkflow
23
24}