Meetings

See what is coming up, and what will be recorded

Each meeting in the window with willRecord, and when false a skipReason naming why — the same decision the recording engine itself makes, resolved as you ask rather than looked up afterwards. This is the endpoint to answer "will this be recorded". The window may not exceed 92 days.

gethttps://api-notetaker.nabrah.ai/ext/v1/meetings/schedule

Query parameters

fromstring · date-timerequired
tostring · date-timerequired

Request

cURL
curl -X GET https://api-notetaker.nabrah.ai/ext/v1/meetings/schedule \
  -H "Authorization: Bearer $NABRAH_API_KEY"

Responses

200What is coming up, and what will be recorded.
401No key, an unknown key, or one that has been revoked or has expired.
403The key is read only, or lacks the reach for this route.
404No such record — or one that belongs to another account.
422The body or query failed validation; details names the field.
429Too many requests. Retry-After says how long to wait.
{
  "data": {
    "rows": [
      {
        "meetingId": "00000000-0000-0000-0000-000000000000",
        "runId": "string",
        "platform": "string",
        "phase": "string",
        "state": "string",
        "skipReason": "string",
        "willRecord": true,
        "detail": "string",
        "waitedSeconds": 0,
        "recordingSeconds": 0,
        "joinedAt": "string",
        "endedAt": "string",
        "hasNotes": true
      }
    ],
    "total": 0,
    "limit": 0,
    "offset": 0
  }
}