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
}
]
}
}
}'