Skip to content

Enqueue extraction for one meeting

POST
/follow-ups/run
curl --request POST \
--url 'https://my-instance.example.com/follow-ups/run?meetingId=example' \
--header 'Authorization: Bearer <token>'
meetingId
required
string
force
boolean

Pass true to clear the failure and run marker first (task mappings are kept).

Extraction enqueued.

Media type application/json
object
enqueued
boolean
meetingId
string
transcriptVersion
string
Example generated
{
"enqueued": true,
"meetingId": "example",
"transcriptVersion": "example"
}

meetingId is missing.

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

The bearer token is missing or wrong.

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

The meeting is unknown.

Media type application/json
object
error
required
string
code
string
Example
{
"error": "meeting not found"
}

The lookup failed.

Media type application/json
object
error
required
string
code
string
Example generated
{
"error": "example",
"code": "example"
}