curl --request GET \
--url https://app.harmonica.chat/api/v1/meetings/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.harmonica.chat/api/v1/meetings/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.harmonica.chat/api/v1/meetings/{id}', 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://app.harmonica.chat/api/v1/meetings/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.harmonica.chat/api/v1/meetings/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.harmonica.chat/api/v1/meetings/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.harmonica.chat/api/v1/meetings/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"meeting_url": "<string>",
"meeting_provider": "google_meet",
"starts_at": "2023-11-07T05:31:56Z",
"ends_at": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"status": "scheduled",
"error_code": "<string>",
"error_message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"access_basis": "owner",
"transcript": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meeting_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "processing",
"availability": "pending",
"language": "<string>",
"revision": 2,
"content_hash": "<string>",
"restriction_revision": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"source": {
"kind": "harmonica_capture",
"provider": "<string>"
},
"processing": {
"provider": "<string>",
"model": "<string>",
"normalization_version": "<string>",
"attempt_status": "pending",
"failure_stage": "capture",
"failure_disposition": "retryable",
"error_code": "<string>",
"error_message": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid or missing API key"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}Get meeting metadata
Returns full metadata to the meeting owner. A named viewer-or-higher member of a non-deleted Project with a current meeting attachment may read redacted metadata. Public and platform-global grants do not confer access. Missing and unauthorized meetings both return 404. Project-derived responses redact the meeting URL and raw errors and require sharing policy to remain allowed.
curl --request GET \
--url https://app.harmonica.chat/api/v1/meetings/{id} \
--header 'Authorization: Bearer <token>'import requests
url = "https://app.harmonica.chat/api/v1/meetings/{id}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.harmonica.chat/api/v1/meetings/{id}', 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://app.harmonica.chat/api/v1/meetings/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://app.harmonica.chat/api/v1/meetings/{id}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://app.harmonica.chat/api/v1/meetings/{id}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://app.harmonica.chat/api/v1/meetings/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"title": "<string>",
"meeting_url": "<string>",
"meeting_provider": "google_meet",
"starts_at": "2023-11-07T05:31:56Z",
"ends_at": "2023-11-07T05:31:56Z",
"timezone": "<string>",
"status": "scheduled",
"error_code": "<string>",
"error_message": "<string>",
"created_at": "2023-11-07T05:31:56Z",
"updated_at": "2023-11-07T05:31:56Z",
"access_basis": "owner",
"transcript": {
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"meeting_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"status": "processing",
"availability": "pending",
"language": "<string>",
"revision": 2,
"content_hash": "<string>",
"restriction_revision": "<string>",
"completed_at": "2023-11-07T05:31:56Z",
"source": {
"kind": "harmonica_capture",
"provider": "<string>"
},
"processing": {
"provider": "<string>",
"model": "<string>",
"normalization_version": "<string>",
"attempt_status": "pending",
"failure_stage": "capture",
"failure_disposition": "retryable",
"error_code": "<string>",
"error_message": "<string>",
"started_at": "2023-11-07T05:31:56Z",
"completed_at": "2023-11-07T05:31:56Z"
}
}
}{
"error": {
"code": "unauthorized",
"message": "Invalid or missing API key"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}{
"error": {
"code": "unauthorized",
"message": "<string>"
}
}Authorizations
API key authentication. Pass your key as a Bearer token.
Keys use the format hm_live_<32 hex chars>.
Generate keys from your Harmonica dashboard settings.
Path Parameters
Response
Authorized meeting detail
Calendar meeting metadata. Direct Project-derived reads redact meeting_url and raw error_message to null.
google_meet, zoom, microsoft_teams scheduled, joining, in_call, recording, transcribing, ready, failed, cancelled Raw meeting failure detail for the owner; null for Project-derived readers.
owner, project Show child attributes
Show child attributes