submitAccountSetupSession
Overview
This mutation validates and submits the current account setup session.
Special Considerations
- An account setup session can only be successfully submitted once per account.
Inputs
None.
Returns
Promise<SuccessResult>
A promise containing a sucess message.
Example
Running this mutation:
mutation {
submitAccountSetupSession {
message
}
}
Gives us:
{
"data": {
"submitAccountSetupSession": {
"message": "Account setup complete"
}
}
}
Common Errors
When running this mutation some of the common errors encountered include:
This is not a valid account setup session (I-2001).
A user already exists in our system with this information. (I-4302).
- You've already successfully submitted a setup session.
There was an error setting up your account. (I-4314).