Skip to content

Clear failure rows

POST
/follow-ups/failures/clear
curl --request POST \
--url https://my-instance.example.com/follow-ups/failures/clear \
--header 'Authorization: Bearer <token>'
all
boolean

Pass true to clear every row.

meetingId
string

Clear the failure row for one meeting.

The number of rows cleared.

Media type application/json
object
ok
boolean
cleared
integer
Example generated
{
"ok": true,
"cleared": 1
}

Neither meetingId nor all=true was provided.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "meetingId or all=true is required"
}

The bearer token is missing or wrong.

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