appointment
Email a meeting's notes to a chosen address
POST
/
v4
/
meeting-transcript
/
email
Email a meeting's notes to a chosen address
curl --request POST \
--url https://api.example.com/v4/meeting-transcript/email \
--header 'Content-Type: application/json' \
--data '
{
"to": "jsmith@example.com",
"meetingTitle": "<string>",
"summary": "<string>",
"transcription": "<string>",
"summaryLabel": "<string>",
"transcriptLabel": "<string>"
}
'import requests
url = "https://api.example.com/v4/meeting-transcript/email"
payload = {
"to": "jsmith@example.com",
"meetingTitle": "<string>",
"summary": "<string>",
"transcription": "<string>",
"summaryLabel": "<string>",
"transcriptLabel": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
to: 'jsmith@example.com',
meetingTitle: '<string>',
summary: '<string>',
transcription: '<string>',
summaryLabel: '<string>',
transcriptLabel: '<string>'
})
};
fetch('https://api.example.com/v4/meeting-transcript/email', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v4/meeting-transcript/email",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'to' => 'jsmith@example.com',
'meetingTitle' => '<string>',
'summary' => '<string>',
'transcription' => '<string>',
'summaryLabel' => '<string>',
'transcriptLabel' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/meeting-transcript/email"
payload := strings.NewReader("{\n \"to\": \"jsmith@example.com\",\n \"meetingTitle\": \"<string>\",\n \"summary\": \"<string>\",\n \"transcription\": \"<string>\",\n \"summaryLabel\": \"<string>\",\n \"transcriptLabel\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v4/meeting-transcript/email")
.header("Content-Type", "application/json")
.body("{\n \"to\": \"jsmith@example.com\",\n \"meetingTitle\": \"<string>\",\n \"summary\": \"<string>\",\n \"transcription\": \"<string>\",\n \"summaryLabel\": \"<string>\",\n \"transcriptLabel\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/meeting-transcript/email")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"to\": \"jsmith@example.com\",\n \"meetingTitle\": \"<string>\",\n \"summary\": \"<string>\",\n \"transcription\": \"<string>\",\n \"summaryLabel\": \"<string>\",\n \"transcriptLabel\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}Body
application/json
Recipient address.
Meeting title, used in the subject and as the heading.
Maximum string length:
300Meeting summary, markdown.
Maximum string length:
100000Full transcription, markdown.
Maximum string length:
500000Heading for the summary section.
Maximum string length:
120Heading for the transcript section.
Maximum string length:
120Response
⌘I
Email a meeting's notes to a chosen address
curl --request POST \
--url https://api.example.com/v4/meeting-transcript/email \
--header 'Content-Type: application/json' \
--data '
{
"to": "jsmith@example.com",
"meetingTitle": "<string>",
"summary": "<string>",
"transcription": "<string>",
"summaryLabel": "<string>",
"transcriptLabel": "<string>"
}
'import requests
url = "https://api.example.com/v4/meeting-transcript/email"
payload = {
"to": "jsmith@example.com",
"meetingTitle": "<string>",
"summary": "<string>",
"transcription": "<string>",
"summaryLabel": "<string>",
"transcriptLabel": "<string>"
}
headers = {"Content-Type": "application/json"}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {'Content-Type': 'application/json'},
body: JSON.stringify({
to: 'jsmith@example.com',
meetingTitle: '<string>',
summary: '<string>',
transcription: '<string>',
summaryLabel: '<string>',
transcriptLabel: '<string>'
})
};
fetch('https://api.example.com/v4/meeting-transcript/email', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/v4/meeting-transcript/email",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'to' => 'jsmith@example.com',
'meetingTitle' => '<string>',
'summary' => '<string>',
'transcription' => '<string>',
'summaryLabel' => '<string>',
'transcriptLabel' => '<string>'
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/v4/meeting-transcript/email"
payload := strings.NewReader("{\n \"to\": \"jsmith@example.com\",\n \"meetingTitle\": \"<string>\",\n \"summary\": \"<string>\",\n \"transcription\": \"<string>\",\n \"summaryLabel\": \"<string>\",\n \"transcriptLabel\": \"<string>\"\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://api.example.com/v4/meeting-transcript/email")
.header("Content-Type", "application/json")
.body("{\n \"to\": \"jsmith@example.com\",\n \"meetingTitle\": \"<string>\",\n \"summary\": \"<string>\",\n \"transcription\": \"<string>\",\n \"summaryLabel\": \"<string>\",\n \"transcriptLabel\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/v4/meeting-transcript/email")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["Content-Type"] = 'application/json'
request.body = "{\n \"to\": \"jsmith@example.com\",\n \"meetingTitle\": \"<string>\",\n \"summary\": \"<string>\",\n \"transcription\": \"<string>\",\n \"summaryLabel\": \"<string>\",\n \"transcriptLabel\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}{
"statusCode": 400,
"message": [
"limit must not be greater than 100"
],
"error": "BadRequestException"
}