GET
/
meetings
curl --request GET \
  --url https://api.momentum.io/external-api/v1/meetings \
  --header 'X-API-Key: <api-key>'
{
  "meetings": [
    {
      "id": "<string>",
      "title": "<string>",
      "startTime": "2023-11-07T05:31:56Z",
      "endTime": "2023-11-07T05:31:56Z",
      "attendees": [
        {
          "id": "<string>",
          "name": "<string>",
          "email": "jsmith@example.com",
          "isInternal": true,
          "salesforceCaseId": "<string>",
          "salesforceLeadId": "<string>"
        }
      ],
      "transcript": {
        "entries": [
          {
            "speaker": {
              "name": "<string>",
              "attendeeId": "<string>"
            },
            "timestamp": "<string>",
            "timestampSeconds": 123,
            "text": "<string>"
          }
        ]
      }
    }
  ]
}

Authorizations

X-API-Key
string
header
required

API key for authenticating requests

Query Parameters

from
string

Filter meetings starting from this date-time (ISO 8601 format) inclusively.

to
string

Filter meetings ending before this date-time (ISO 8601 format) inclusively.

pageNumber
number
pageSize
number

Response

200 - application/json

A list of meetings.

The response is of type object.