## Create user

**post** `/api/v1/users`

Create user

### Header Parameters

- `"X-Environment": "sandbox" or "production"`

  - `"sandbox"`

  - `"production"`

### Body Parameters

- `email: string`

- `first_name: string`

- `last_name: string`

- `password: string`

### Returns

- `status: string`

- `user_id: string`

### Example

```http
curl https://accounts-service-staging.up.railway.app/api/v1/users \
    -H 'Content-Type: application/json' \
    -H "X-API-Key: $RAILS_API_KEY" \
    -d '{
          "email": "dev@stainless.com",
          "first_name": "first_name",
          "last_name": "last_name",
          "password": "password"
        }'
```

#### Response

```json
{
  "status": "status",
  "user_id": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e"
}
```
