List active verifications
GET/v1/app/setup/verifications
List pending and active device verifications. Use this to recover state without a WebSocket connection.
List active verifications
curl http://localhost:23373/v1/app/setup/verifications \
-H "Authorization: Bearer $BEEPER_ACCESS_TOKEN"{
"items": [
{
"id": "id",
"availableActions": [
"accept"
],
"direction": "incoming",
"methods": [
"qr"
],
"purpose": "login",
"state": "requested",
"error": {
"code": "code",
"reason": "reason"
},
"otherDevice": {
"id": "id",
"name": "name"
},
"otherUserID": "otherUserID",
"qr": {
"data": "data"
},
"sas": {
"emojis": "emojis",
"decimals": "decimals"
}
}
]
}Returns Examples
{
"items": [
{
"id": "id",
"availableActions": [
"accept"
],
"direction": "incoming",
"methods": [
"qr"
],
"purpose": "login",
"state": "requested",
"error": {
"code": "code",
"reason": "reason"
},
"otherDevice": {
"id": "id",
"name": "name"
},
"otherUserID": "otherUserID",
"qr": {
"data": "data"
},
"sas": {
"emojis": "emojis",
"decimals": "decimals"
}
}
]
}