Skip to content

List unresolved failures

GET
/follow-ups/failures
curl --request GET \
--url 'https://my-instance.example.com/follow-ups/failures?limit=50' \
--header 'Authorization: Bearer <token>'
limit
integer
default: 50 <= 500

Capped at 500; defaults to 50.

The unresolved failures.

Media type application/json
object
ok
boolean
failures
Array<object>
object
meetingId
string
retryCount
integer
errorMessage
string
lastAttemptAt
string format: date-time
Example generated
{
"ok": true,
"failures": [
{
"meetingId": "example",
"retryCount": 1,
"errorMessage": "example",
"lastAttemptAt": "2026-04-15T12:00:00Z"
}
]
}

The bearer token is missing or wrong.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "Unauthorized"
}