POST

Recordings.Transcription

Return the saved AI transcription for one call recording. This does not start transcription; use Recordings.Transcribe for that.

Permissions

  • User must be logged in with a valid bearer token.
  • Returned or changed records are limited by the user permissions, team access, folder access, and account settings.

Action

  • Runs the Recordings.Transcription function and returns JSON.

Push Service

No push is sent because this function only reads data or returns helper information.

Automation

No automation is run for this function.

Special Instructions

  • Send the bearer token on protected calls with Authorization: Bearer YOUR TOKEN.
  • Send parameters as POST body fields exactly as documented.

Required Parameters

NameTypeSampleExplanation
recording_id
post
int600Recording id to read. id or data_id are also accepted.

Optional Parameters

No optional body parameters are defined for this function.

Authentication

Send the bearer token returned by Login in the request header.

Authorization: Bearer YOUR TOKEN

Sample Request

{
    "url": "\/app\/Recordings.Transcription",
    "method": "POST",
    "headers": {
        "Authorization": "Bearer YOUR TOKEN"
    },
    "body": {
        "recording_id": "600"
    },
    "url_user": "https:\/\/{user}.bull36.com\/app\/Recordings.Transcription",
    "url_domain": "https:\/\/{domain}\/app\/Recordings.Transcription"
}

Endpoint

POST /app/Recordings.Transcription
POST https://{user}.bull36.com/app/Recordings.Transcription
POST https://{domain}/app/Recordings.Transcription

Sample Output

{
    "success": 1,
    "recording_id": 600,
    "transcription_text": "Call transcript text",
    "transcription_values": {
        "summary": "Customer requested pricing"
    },
    "transcription_status": "done",
    "tokens_used": 1000,
    "transcription_at": "2026-07-19 10:05:00"
}

JavaScript Example

const token = 'YOUR TOKEN';
const body = new URLSearchParams({ recording_id: '600' });
const res = await fetch('/app/Recordings.Transcription', { method: 'POST', headers: { Authorization: `Bearer ${token}` }, body });
const data = await res.json();
console.log(data.transcription_text);

Error Example

{
    "success": "0",
    "message": "Recording was not found."
}