signupCreate

Graphql fields and variables for the signupCreate mutation

Sign up for a Bunny account

Scope required: signup:write

For a complete list of input attributes see the SignupAttributes type

mutation signupCreate ($attributes: SignupAttributes!) {
  signupCreate (attributes: $attributes) {
      errors
      token
  }
}

Arguments

{
  "attributes": {
    "firstName": "",
    "lastName": "",
    "email": "",
    "company": "",
    "subdomain": ""
  }
}
Name
Type
Description

Response

Name
Type
Description

errors

List (String)

token

String

Last updated

Was this helpful?