## Start Beeper app setup **post** `/v1/app/setup/start` Start setting up Beeper Desktop or Beeper Server. The flow supports existing Beeper accounts and new account creation. ### Returns - `setupRequestID: string` Setup request ID to use in the next sign-in step. - `signInMethods: array of string` Available sign-in methods for this setup request. ### Example ```http curl http://localhost:23373/v1/app/setup/start \ -X POST \ -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN" ``` #### Response ```json { "setupRequestID": "setupRequestID", "signInMethods": [ "string" ] } ```