Skip to main content
GET
/
crm
/
extensions
/
calling
/
2026-03
/
transcripts
/
{transcriptId}
cURL
curl --request GET \
  --url https://api.hubapi.com/crm/extensions/calling/2026-03/transcripts/{transcriptId} \
  --header 'Authorization: Bearer <token>'
{
  "createdAt": "2023-11-07T05:31:56Z",
  "engagementId": 123,
  "id": "<string>",
  "transcriptSource": "HUBSPOT_GENERATED",
  "transcriptUtterances": [
    {
      "endTimeMillis": 123,
      "id": "<string>",
      "startTimeMillis": 123,
      "text": "<string>",
      "languageCode": "<string>",
      "speaker": {
        "id": "<string>",
        "name": "<string>",
        "email": "<string>"
      }
    }
  ],
  "updatedAt": "2023-11-07T05:31:56Z"
}

Documentation Index

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

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

Supported products

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

transcriptId
string
required

Response

successful operation

createdAt
string<date-time>
required
engagementId
integer<int64>
required
id
string
required
transcriptSource
enum<string>
required
Available options:
HUBSPOT_GENERATED,
INTEGRATOR_GENERATED
transcriptUtterances
object[]
required
updatedAt
string<date-time>
required
Last modified on May 15, 2026