# Login Flows ## List login flows `$ beeper-desktop bridges:login-flows list` **get** `/v1/bridges/{bridgeID}/login-flows` List connect and reconnect flow options for a bridge. Use a flowID when creating a bridge login session. ### Parameters - `--bridge-id: string` Bridge ID. ### Returns - `BridgeLoginFlowListResponse: object { items }` - `items: array of LoginFlow` - `id: string` Flow ID to pass when creating a bridge login session. - `description: optional string` Short explanation for when to use this flow, when provided. - `name: optional string` Display name for the flow, when provided. ### Example ```cli beeper-desktop bridges:login-flows list \ --access-token 'My Access Token' \ --bridge-id local-whatsapp ``` #### Response ```json { "items": [ { "id": "id", "description": "description", "name": "name" } ] } ```