Skip to main content
POST
/
user-provided-meeting
Ingest a meeting from any source
curl --request POST \
  --url https://receiver.momentum.io/user-provided-meeting \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '{
  "meeting": {
    "id": "<string>",
    "title": "<string>",
    "callUrl": "<string>",
    "recordingUrl": "<string>",
    "startTime": "2023-11-07T05:31:56Z",
    "endTime": "2023-11-07T05:31:56Z",
    "host": {
      "name": "<string>",
      "email": "jsmith@example.com"
    },
    "attendees": [
      {
        "email": "jsmith@example.com",
        "isInternal": true,
        "name": "<string>"
      }
    ],
    "salesforceAccountId": "<string>",
    "salesforceOpportunityId": "<string>",
    "transcript": {
      "segments": [
        {
          "speaker": {
            "name": "<string>"
          },
          "text": "<string>",
          "timestampSeconds": 123
        }
      ]
    }
  }
}'

Authorizations

X-API-Key
string
header
required

API key for authenticating requests

Body

application/json
meeting
object
required

Response

Meeting successfully created.