Page through the organisation's meetings, newest first.
Query
limitinteger- Meetings per page, 1 to 50. Defaults to 25.
cursorstring- `next_cursor` from the previous page.
external_idstring- Look up the single meeting carrying this reference. Cannot be combined with the other filters.
date_fromstring- Earliest meeting date, YYYY-MM-DD, inclusive.
date_tostring- Latest meeting date, YYYY-MM-DD, inclusive.
Response 200
MeetingPageSuccess.
meetingsMeeting[]required- One page of meetings, newest first.
next_cursorstring- Pass as `cursor` to fetch the next page. Absent means the end. A page may contain fewer items than `limit`.
Refusals
INVALID_REQUESTThe request body or the combination of query parameters is not valid. `details.fields` names the offending fields where the body is at fault.details.fieldsINVALID_LIMIT`limit` is not a whole number within the allowed range.limitINVALID_CURSOR`cursor` was not produced by a previous page of this list.cursorINVALID_DATEA date is not a calendar date in YYYY-MM-DD form.INVALID_DATE_RANGE`date_from` lies after `date_to`.date_fromdate_to
UNAUTHENTICATEDThe Authorization header is missing, malformed, or the key is unknown, expired or revoked.
IP_NOT_ALLOWEDThe key has an IP allowlist and this caller's address is not on it.API_ACCESS_DISABLEDThe organisation does not have API access, or the integration behind this key is no longer active.PERSONAL_API_KEYS_DISABLEDThe organisation does not have personal API keys enabled, so this personal key cannot be used.INSUFFICIENT_SCOPEThe key is valid but does not carry the scope this endpoint requires.ORGANISATION_SUSPENDEDThe organisation is blocked.ORGANISATION_EXPIREDThe organisation's access has expired.
INTERNAL_ERRORSomething went wrong on our side. The response carries a `request_id`; quote it in a support ticket.request_id
curl -X GET 'https://api.notulai.nl/v1/meetings?limit=25' \
-H 'Authorization: Bearer nla_live_...'