## Start Beeper app setup

`app.setup.start()  -> SetupStartResponse`

**post** `/v1/app/setup/start`

Start setting up Beeper Desktop or Beeper Server. The flow supports existing Beeper accounts and new account creation.

### Returns

- `class SetupStartResponse: …`

  - `setup_request_id: str`

    Setup request ID to use in the next sign-in step.

  - `sign_in_methods: List[str]`

    Available sign-in methods for this setup request.

### Example

```python
from beeper_desktop_api import BeeperDesktop

client = BeeperDesktop()
response = client.app.setup.start()
print(response.setup_request_id)
```

#### Response

```json
{
  "setupRequestID": "setupRequestID",
  "signInMethods": [
    "string"
  ]
}
```
