List bridge logins
GET/v1/bridges/{bridgeID}/logins
List bridge logins. A bridge login is a signed-in identity for a bridge and can contain one or more chat accounts.
List bridge logins
curl http://localhost:23373/v1/bridges/$BRIDGE_ID/logins \
-H "Authorization: Bearer $BEEPER_ACCESS_TOKEN"{
"items": [
{
"bridgeID": "bridgeID",
"loginID": "loginID",
"removeScopes": [
"current-device"
],
"status": "connected",
"accountIDs": [
"string"
],
"statusText": "statusText",
"user": {
"id": "id",
"cannotMessage": true,
"email": "email",
"fullName": "fullName",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "username"
}
}
]
}Returns Examples
{
"items": [
{
"bridgeID": "bridgeID",
"loginID": "loginID",
"removeScopes": [
"current-device"
],
"status": "connected",
"accountIDs": [
"string"
],
"statusText": "statusText",
"user": {
"id": "id",
"cannotMessage": true,
"email": "email",
"fullName": "fullName",
"imgURL": "imgURL",
"isSelf": true,
"phoneNumber": "phoneNumber",
"username": "username"
}
}
]
}