Skip to main content
PATCH
/
v4
/
appointment
/
{appointmentId}
/
transcription
Update meeting transcription and summary
curl --request PATCH \
  --url https://api.example.com/v4/appointment/{appointmentId}/transcription \
  --header 'Content-Type: application/json' \
  --header 'x-meetergo-api-user-id: <api-key>' \
  --data '
{
  "transcription": "<string>",
  "summary": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://developer.meetergo.com/llms.txt

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

Authorizations

x-meetergo-api-user-id
string
header
required

User ID to act as when using API Key authentication (required with API Key)

Path Parameters

appointmentId
string
required

The unique identifier of the appointment

Body

application/json

Transcription and/or summary content in markdown format

transcription
string | null

Full meeting transcription in markdown format. Set to null to clear.

summary
string | null

AI-generated summary of the meeting in markdown format. Set to null to clear.

Response

Transcription updated successfully