cURL
curl --request GET \ --url https://api.momentum.io/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", "host": { "email": "<string>", "name": "<string>" }, "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>" } ] }, "salesforceAccountId": "<string>", "salesforceOpportunityId": "<string>" } ] }
API key for authenticating requests
Filter meetings starting from this date-time (ISO 8601 format) inclusively.
Filter meetings ending before this date-time (ISO 8601 format) inclusively.
A list of meetings.
The response is of type object.
object