List processed meeting runs
GET
/follow-ups/runs
const url = 'https://my-instance.example.com/follow-ups/runs?limit=50';const options = {method: 'GET', 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 GET \ --url 'https://my-instance.example.com/follow-ups/runs?limit=50' \ --header 'Authorization: Bearer <token>'Authorizations
Section titled “Authorizations ”Parameters
Section titled “ Parameters ”Query Parameters
Section titled “Query Parameters ” since
string format: date-time
limit
integer
Responses
Section titled “ Responses ”The processed runs.
Media type application/json
object
ok
boolean
runs
Array<object>
object
meetingId
string
processedAt
string format: date-time
taskCount
integer
Example generated
{ "ok": true, "runs": [ { "meetingId": "example", "processedAt": "2026-04-15T12:00:00Z", "taskCount": 1 } ]}since is not a valid ISO8601 timestamp.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "since must be a valid ISO8601 timestamp"}The bearer token is missing or wrong.
Media type application/json
object
error
required
string
code
string
Example
{ "error": "Unauthorized"}