-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcurl.json
More file actions
30 lines (30 loc) · 788 Bytes
/
curl.json
File metadata and controls
30 lines (30 loc) · 788 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
curl --request POST \
--url "https://YOUR_RECALL_REGION.recall.ai/api/v1/bot/" \
--header "Authorization: Token YOUR_RECALL_API_KEY" \
--header "accept: application/json" \
--header "content-type: application/json" \
--data '
{
"meeting_url": "YOUR_TEAMS_MEETING_LINK",
"recording_config": {
"transcript": {
"provider": {
"recallai_streaming": {
"mode": "prioritize_low_latency",
"language_code": "en"
}
},
"diarization": {
"use_separate_streams_when_available": true
}
},
"realtime_endpoints": [
{
"type": "webhook",
"url": "YOUR_NGROK_LINK/webhook/recall/transcript",
"events": ["transcript.data", "transcript.partial_data"]
}
]
}
}
'