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>'
import requests

url = "https://api.attention.tech/v2/recorder_metrics/all_meetings"

headers = {"Authorization": "<api-key>"}

response = requests.get(url, headers=headers)

print(response.text)
const options = {method: 'GET', headers: {Authorization: '<api-key>'}};

fetch('https://api.attention.tech/v2/recorder_metrics/all_meetings', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://api.attention.tech/v2/recorder_metrics/all_meetings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: <api-key>"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"net/http"
"io"
)

func main() {

url := "https://api.attention.tech/v2/recorder_metrics/all_meetings"

req, _ := http.NewRequest("GET", url, nil)

req.Header.Add("Authorization", "<api-key>")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.get("https://api.attention.tech/v2/recorder_metrics/all_meetings")
.header("Authorization", "<api-key>")
.asString();
require 'uri'
require 'net/http'

url = URI("https://api.attention.tech/v2/recorder_metrics/all_meetings")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = '<api-key>'

response = http.request(request)
puts response.read_body
{
  "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>"
}
{
"id": "not_found_error",
"status": "404",
"code": "404",
"title": "Not Found Error",
"detail": "The requested resource was not found",
"source": {
"pointer": "/data/attributes/id"
}
}
{
"id": "not_found_error",
"status": "404",
"code": "404",
"title": "Not Found Error",
"detail": "The requested resource was not found",
"source": {
"pointer": "/data/attributes/id"
}
}
{
"id": "not_found_error",
"status": "404",
"code": "404",
"title": "Not Found Error",
"detail": "The requested resource was not found",
"source": {
"pointer": "/data/attributes/id"
}
}

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.