## List login flows **get** `/v1/bridges/{bridgeID}/login-flows` List connect and reconnect flow options for a bridge. Use a flowID when creating a bridge login session. ### Path Parameters - `bridgeID: string` Bridge ID. ### Returns - `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 ```http curl http://localhost:23373/v1/bridges/$BRIDGE_ID/login-flows \ -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN" ``` #### Response ```json { "items": [ { "id": "id", "description": "description", "name": "name" } ] } ```