Skip to main content
GET
/
meetings
/
{meetingId}
Get a meeting
curl --request GET \
  --url https://http.us.breakcold.com/api/v1/meetings/{meetingId} \
  --header 'Authorization: Bearer <token>'
{
  "meeting": {
    "id": "<string>",
    "workspaceId": "<string>",
    "startTimeMs": 123,
    "hasTranscript": true,
    "participants": [
      {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>",
        "isHost": true,
        "invitationStatus": "<string>",
        "fromCalendarInvitee": true,
        "fromRealtimeParticipant": true,
        "resolvedRecordId": "<string>",
        "callRecordingId": "<string>"
      }
    ],
    "createdAt": 123,
    "updatedAt": 123,
    "title": "<string>",
    "description": "<string>",
    "endTimeMs": 123,
    "timezone": "<string>",
    "isAllDay": true,
    "meetingUrl": "<string>",
    "organizerEmail": "<string>",
    "attendeeEmails": [
      "<string>"
    ],
    "botPlannedReason": "<string>",
    "callRecordingId": "<string>",
    "callStatus": "<string>",
    "recordingStatus": "<string>",
    "durationSec": 123,
    "startedAtMs": 123,
    "endedAtMs": 123,
    "transcriptStatus": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.breakcold.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Breakcold public API key, for example Bearer bc_live_....

Headers

X-Breakcold-Organization-Id
string

Breakcold organization ID. API keys already carry their organization, so most API-key requests do not need this header. Use it only when Breakcold asks you to choose an organization for a signed-in user token.

Path Parameters

meetingId
string
required

Response

Success

meeting
object
required