List login flows
bridges.login_flows.list(strbridge_id) -> LoginFlowListResponse
GET/v1/bridges/{bridgeID}/login-flows
List connect and reconnect flow options for a bridge. Use a flowID when creating a bridge login session.
List login flows
import os
from beeper_desktop_api import BeeperDesktop
client = BeeperDesktop(
access_token=os.environ.get("BEEPER_ACCESS_TOKEN"), # This is the default and can be omitted
)
login_flows = client.bridges.login_flows.list(
"local-whatsapp",
)
print(login_flows.items){
"items": [
{
"id": "id",
"description": "description",
"name": "name"
}
]
}Returns Examples
{
"items": [
{
"id": "id",
"description": "description",
"name": "name"
}
]
}