## Start Beeper app setup

`client.App.Setup.Start(ctx) (*AppSetupStartResponse, error)`

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

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

### Returns

- `type AppSetupStartResponse struct{…}`

  - `SetupRequestID string`

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

  - `SignInMethods []string`

    Available sign-in methods for this setup request.

### Example

```go
package main

import (
  "context"
  "fmt"

  "github.com/beeper/desktop-api-go"
  "github.com/beeper/desktop-api-go/option"
)

func main() {
  client := beeperdesktopapi.NewClient(
    option.WithAccessToken("My Access Token"),
  )
  response, err := client.App.Setup.Start(context.TODO())
  if err != nil {
    panic(err.Error())
  }
  fmt.Printf("%+v\n", response.SetupRequestID)
}
```

#### Response

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