Discussions
Transcriptor Meeting Bot with OrderId
3 months ago by Michal
Hello. Is it possible to associate the Transcriptor Meeting Bot with an orderId? The code below
$url = "https://api.transkriptor.com/7/Add-Bot-to-Meeting";
$parameters = array(
"meetingUrl" => "MEETING URL HERE",
"language" => "en-US",
"apiKey" => "XXXXX"
);
$response = file_get_contents($url . '?' . http_build_query($parameters));
$content = json_decode($response, true);
does not return the orderId in the response, based on which the transcript can later be retrieved. What are our options to add the bot to a Google Meet conversation and then retrieve the transcript using the API?