Skip to content

Sign Up

The sign up flow is the first step for a user to pick and subscribe to a vehicle. At sign up an account is created. After selecting a vehicle, the user will go through the qualification process where they will submit additional information including their driver’s license information to run a credit check and a check against their Motor Vehicle Record (MVR).

Sign Up
Sign Up mutation
mutation SignUp($input: RegisterInput!) {
register(input: $input) {
token
refreshToken
redirectTo
}
}
input RegisterInput {
name: String @deprecated(reason: "Use 'firstName', 'lastName'")
firstName: String
lastName: String
email: String!
phoneNumber: String!
zip: String
password: String!
allowSms: Boolean!
allowEmail: Boolean!
}