# signupCreate

Sign up for a Bunny account

**Scope required:** signup:write

For a complete list of input attributes see the [SignupAttributes](https://github.com/bunnyapp/docs-developer/blob/main/api-reference/types/signupattributes.md) type

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

## Arguments

```json
{
  "attributes": {
    "firstName": "",
    "lastName": "",
    "email": "",
    "company": "",
    "subdomain": ""
  }
}
```

| Name       | Type                                                                                                             | Description |
| ---------- | ---------------------------------------------------------------------------------------------------------------- | ----------- |
| attributes | [SignupAttributes](https://github.com/bunnyapp/docs-developer/blob/main/api-reference/types/signupattributes.md) |             |

## Response

| Name   | Type          | Description |
| ------ | ------------- | ----------- |
| errors | List (String) |             |
| token  | String        |             |
