Bots
Send the notetaker into a meeting
Dispatches a bot to a live meeting link. Three things are worth knowing before you call it: only one bot per account can be live at a time, so a second call returns 409 and retrying will not help; it counts against the monthly recording allowance, and at the cap returns 409 with the reason; and the link must be on a supported platform. Send an Idempotency-Key so a retry after a timeout cannot start a second bot.
post
https://api-notetaker.nabrah.ai/ext/v1/botsBody
joinUrlstring · urirequiredtitlestringRequest
curl -X POST https://api-notetaker.nabrah.ai/ext/v1/bots \
-H "Authorization: Bearer $NABRAH_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"joinUrl": "string",
"title": "string"
}'Responses
201The bot was dispatched.401No key, an unknown key, or one that has been revoked or has expired.403The key is read only, or lacks the reach for this route.404No such record — or one that belongs to another account.409Either a bot is already live for this account, or the monthly allowance is spent. The message says which.422The body or query failed validation; details names the field.429Too many requests. Retry-After says how long to wait.{
"data": {}
}