curl --request GET \
--url http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}import requests
url = "http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_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_PORT => "8000",
CURLOPT_URL => "http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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 := "http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}")
.asString();require 'uri'
require 'net/http'
url = URI("http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"workspace_id": "<string>",
"status": "<string>",
"progress": 123,
"error": "<string>",
"segment_count": 123,
"segments": [
{
"id": "<string>",
"start_ms": 123,
"end_ms": 123,
"text": "<string>",
"speaker_label": "<string>",
"confidence": 123
}
],
"created_at": "<string>",
"content_visible": true,
"elevation_required": true,
"session_was_deleted": true,
"transcription_id": "<string>",
"session_id": "<string>",
"detected_language": "<string>",
"forced_language": "<string>",
"diarisation_model_version": "<string>",
"transcription_text": "<string>",
"speaker_count": 123,
"duration_ms": 123,
"avg_confidence": 123,
"completed_at": "<string>",
"deletion_event_kind": "<string>"
}{
"success": true,
"message": "<string>"
}{
"success": true,
"message": "<string>"
}{
"success": true,
"message": "<string>"
}Get adminjobstranscriptions
curl --request GET \
--url http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}import requests
url = "http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_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_PORT => "8000",
CURLOPT_URL => "http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$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 := "http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}")
.asString();require 'uri'
require 'net/http'
url = URI("http://0.0.0.0:8000/api/admin/jobs/transcriptions/{job_id}")
http = Net::HTTP.new(url.host, url.port)
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"id": "<string>",
"workspace_id": "<string>",
"status": "<string>",
"progress": 123,
"error": "<string>",
"segment_count": 123,
"segments": [
{
"id": "<string>",
"start_ms": 123,
"end_ms": 123,
"text": "<string>",
"speaker_label": "<string>",
"confidence": 123
}
],
"created_at": "<string>",
"content_visible": true,
"elevation_required": true,
"session_was_deleted": true,
"transcription_id": "<string>",
"session_id": "<string>",
"detected_language": "<string>",
"forced_language": "<string>",
"diarisation_model_version": "<string>",
"transcription_text": "<string>",
"speaker_count": 123,
"duration_ms": 123,
"avg_confidence": 123,
"completed_at": "<string>",
"deletion_event_kind": "<string>"
}{
"success": true,
"message": "<string>"
}{
"success": true,
"message": "<string>"
}{
"success": true,
"message": "<string>"
}Path Parameters
Response
jobs.id (same id the admin list returns).
Show child attributes
Show child attributes
True iff transcription_text and segment text are populated normally.
False means the admin is not a native member of this session AND has
not elevated; content fields contain a placeholder & the UI should
show the "View content (audited)" banner.
True iff the admin needs to POST /admin/content-elevate w/ a
reason to see content. False either when the admin has access
natively (member/owner/share) or has already elevated.
Set when this transcription's content was redacted via session
deletion (i.e. transcription_text contains a [redacted-…]
placeholder). Lets the UI show a "Deleted session" badge instead
of a confused "Workspace-level" one.
transcriptions.id — the row that backs this job's output.
When session_was_deleted is true, this is the matching
gdpr_log.event_kind — e.g. session_deleted_by_owner or
account_erasure_session_redacted. Lets the UI render an honest
"why" without exposing actual user identifiers. None when no
matching gdpr_log row was found (older deletions before the audit
pipeline existed; or non-redacted transcriptions).