## Send setup sign-in code

**post** `/v1/app/setup/email`

Send a sign-in code to the user email address for app setup.

### Body Parameters

- `email: string`

  Email address to send the sign-in code to.

- `setupRequestID: string`

  Setup request ID returned by the start step.

### Example

```http
curl http://localhost:23373/v1/app/setup/email \
    -H 'Content-Type: application/json' \
    -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN" \
    -d '{
          "email": "dev@stainless.com",
          "setupRequestID": "setupRequestID"
        }'
```
