Clear failure rows
POST
/follow-ups/failures/clear
const url = 'https://my-instance.example.com/follow-ups/failures/clear';const options = {method: 'POST', headers: {Authorization: 'Bearer <token>'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://my-instance.example.com/follow-ups/failures/clear \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” all
boolean
Pass true to clear every row.
meetingId
string
Clear the failure row for one meeting.
Responses
Section titled “ Responses ”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"}