Skip to main content
GET
/
recorder_metrics
/
all_meetings
List Recorder Meetings
curl --request GET \
  --url https://api.attention.tech/v2/recorder_metrics/all_meetings \
  --header 'Authorization: <api-key>'
{
  "items": [
    {
      "uuid": "<string>",
      "summary": "<string>",
      "date": "2023-11-07T05:31:56Z",
      "userUuid": "<string>",
      "userName": "<string>",
      "status": "<string>",
      "statusLabel": "<string>",
      "participants": [
        {
          "userUuid": "<string>",
          "userName": "<string>",
          "status": "<string>",
          "statusLabel": "<string>"
        }
      ],
      "conversationUuid": "<string>",
      "consentLinkUsed": true,
      "consentStatus": "<string>"
    }
  ],
  "nextCursor": "<string>"
}

Authorizations

Authorization
string
header
required

Query Parameters

fromDateTime
string<date-time>
required

Window start (inclusive), ISO 8601 date-time, e.g. 2026-04-01T00:00:00Z.

toDateTime
string<date-time>
required

Window end (inclusive), ISO 8601 date-time. Must be after fromDateTime and within 90 days of it.

cursor
string

Opaque cursor returned by a previous call. Omit on the first page.

size
integer

Items per page. Defaults to 50. Server-side maximum is 200; values above are clamped.

upcoming
boolean

When true, returns meetings whose start time is in the future (ascending order). Defaults to false (past meetings, descending order).

filter[user_id]
string[]

Restrict the dedup pass to meetings involving any of the given user UUIDs. UUIDs not belonging to the authenticated organization are silently dropped; if none survive, an empty page is returned to avoid cross-tenant membership probing.

filter[meeting_type]
enum<string>

Restrict results to internal (all org participants) or external meetings.

Available options:
internal,
external

Response

Cursor-paginated list of meetings with recording status

items
object[]
required

Page of meetings ordered by date (ascending when upcoming=true, descending otherwise) with UUID as tiebreaker.

nextCursor
string

Opaque cursor for the next page. Absent (or empty) when the iteration has reached the end of the dataset.