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