Skip to content
Download Beeper

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 ParametersExpand Collapse
bridgeID: string

Bridge ID.

minLength1
ReturnsExpand Collapse
items: array of LoginFlow { id, description, name }
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.

List login flows

curl http://localhost:23373/v1/bridges/$BRIDGE_ID/login-flows \
    -H "Authorization: Bearer $BEEPER_ACCESS_TOKEN"
{
  "items": [
    {
      "id": "id",
      "description": "description",
      "name": "name"
    }
  ]
}
Returns Examples
{
  "items": [
    {
      "id": "id",
      "description": "description",
      "name": "name"
    }
  ]
}