# Create Account

You can signup to SMTPD via the api endpoint OR via <https://app.smtpd.dev/signup>

## Signup and create an SMTPD account

<mark style="color:green;">`POST`</mark> `https://api.smtpd.dev/api/v1/account`

This endpoint allows you to create and SMTPD account, once the account has been created someone from SMTPD will contact you to manually verify the account before you can send email.

#### Request Body

| Name           | Type    | Description                                                          |
| -------------- | ------- | -------------------------------------------------------------------- |
| terms          | boolean | Agree to our terms of service - <https://smtpd.dev/terms-of-service> |
| full\_name     | string  | Full name of the root user.                                          |
| plan\_id       | string  | Plan UUID from `/api/v1/billing/plans` endpoint.                     |
| country        | string  | The ISO 3166-1 3 letter country code for the account's location.     |
| password       | string  | The root user password.                                              |
| email\_address | string  | The email address of the root user for the account.                  |
| account\_name  | string  | The company OR person's name for the account.                        |

{% tabs %}
{% tab title="202 Account successfully enqueued for creation. Once the account has been created it will be manually verified." %}

```
{
  "account_id": "b1428eeb-2d55-4363-954e-a050bce8164e"
}
```

{% endtab %}
{% endtabs %}
