Get transcript
GET/api/v1/interview/sessions/:sessionId/transcript
Returns the session transcript as JSON. The platform fetches the
transcript from the ZenHire interview backend server-to-server and returns
its content directly (application/json) — no off-domain redirect, and
no URL to follow. The exact JSON shape is the interview backend's transcript
document (e.g. an array of turns with speaker + text); treat it as
opaque transcript JSON and render it as you see fit.
Available only once the completion webhook has reported the transcript.
Before then this returns 409 ARTIFACT_NOT_READY.
Request
Responses
- 200
- 401
- 403
- 404
- 409
- 500
- 502
The transcript document, as JSON.
Authentication required.
The session belongs to another client.
The requested resource was not found.
No transcript is available for this session yet.
Internal error.
The interview service is unreachable or returned an error.