> ## Documentation Index
> Fetch the complete documentation index at: https://developers.squads.so/llms.txt
> Use this file to discover all available pages before exploring further.

# CreateAccountInput

Simplified account creation input (provide email or signer)

## Example

```typescript theme={null}
const emailAccount: CreateAccountInput = { email: 'user@example.com' };
const signerAccount: CreateAccountInput = { signer: 'publicKeyString' };
```

## Properties

| Property                    | Type     | Description                         |
| --------------------------- | -------- | ----------------------------------- |
| <a id="email" /> `email?`   | `string` | Email for email-based account       |
| <a id="signer" /> `signer?` | `string` | Public key for signer-based account |
