OBJECT
PayoutOnboardingWorkflow
PayoutOnboardingWorkflow describes the workflow details while a user is onboarding into a payout program.
link GraphQL Schema definition
1 type PayoutOnboardingWorkflow { 2 3 # The current step at which this workflow is at. 4 : PayoutOnboardingStep! 5 6 # A PayoutOnboardingWorkflow's unique ID. 7 : ID! 8 9 # The URL for a user to update their payout settings. A redirectURL is the URL 10 # where the user will be redirected to after updating their payout settings. 11 (: String): String! 12 13 # The registration information submitted by the user for this workflow. 14 : PayoutRegistration 15 16 # Describes a user's tax interview information while completing their payout 17 # onboarding. 18 (: TaxInterviewType!, : String!): TaxInterview 19 20 # Lists the fields that were mismatched during the registration and tax interview 21 # steps. 22 : [TaxMismatchError!] 23 24 # The timestamp when the workflow was most recently updated. 25 : Time! 26 27 }
link Required by
- AcceptProgramAgreementPayloadAcceptProgramAgreementPayload is the payload returned after accepting a program agreement.
- CancelPayoutOnboardingWorkflowPayloadCancelPayoutOnboardingWorkflowPayload is the payload returned after canceling a payout onboarding workflow.
- PayoutInvitePayoutInvite describes a user's invite to a payout program.
- RegisterPayoutInformationPayloadRegisterPayoutInformationPayload is the updated workflow after registration is accepted.
- StartPayoutOnboardingWorkflowPayloadStartPayoutOnboardingWorkflowPayload returns a new workflow when starting payout onboarding.