Skip to main content
POST
/
job-interview-pdf
Generate an interview report
curl --request POST \
  --url https://cool.jobmojito.com/functions/v1/job-interview-pdf \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "interview_result_id": "93c98d21-e04d-4a84-9afa-ed154cf73636",
  "interview_result_ids": [
    "3c90c3cc-0d44-4b50-8888-8dd25736052a"
  ],
  "export_features_result": {
    "mojito_language_code": "en",
    "contact_details": true,
    "ai_recruiter_assessment": true,
    "ai_scoring_rubric": false,
    "analytics": true,
    "transcript": true,
    "files": true,
    "answer_recording": false,
    "session_recording": false,
    "group_by_question": false
  },
  "store_file": true
}
'
import requests

url = "https://cool.jobmojito.com/functions/v1/job-interview-pdf"

payload = {
"interview_result_id": "93c98d21-e04d-4a84-9afa-ed154cf73636",
"interview_result_ids": ["3c90c3cc-0d44-4b50-8888-8dd25736052a"],
"export_features_result": {
"mojito_language_code": "en",
"contact_details": True,
"ai_recruiter_assessment": True,
"ai_scoring_rubric": False,
"analytics": True,
"transcript": True,
"files": True,
"answer_recording": False,
"session_recording": False,
"group_by_question": False
},
"store_file": True
}
headers = {
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
method: 'POST',
headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'},
body: JSON.stringify({
interview_result_id: '93c98d21-e04d-4a84-9afa-ed154cf73636',
interview_result_ids: ['3c90c3cc-0d44-4b50-8888-8dd25736052a'],
export_features_result: {
mojito_language_code: 'en',
contact_details: true,
ai_recruiter_assessment: true,
ai_scoring_rubric: false,
analytics: true,
transcript: true,
files: true,
answer_recording: false,
session_recording: false,
group_by_question: false
},
store_file: true
})
};

fetch('https://cool.jobmojito.com/functions/v1/job-interview-pdf', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
CURLOPT_URL => "https://cool.jobmojito.com/functions/v1/job-interview-pdf",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'interview_result_id' => '93c98d21-e04d-4a84-9afa-ed154cf73636',
'interview_result_ids' => [
'3c90c3cc-0d44-4b50-8888-8dd25736052a'
],
'export_features_result' => [
'mojito_language_code' => 'en',
'contact_details' => true,
'ai_recruiter_assessment' => true,
'ai_scoring_rubric' => false,
'analytics' => true,
'transcript' => true,
'files' => true,
'answer_recording' => false,
'session_recording' => false,
'group_by_question' => false
],
'store_file' => true
]),
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>",
"Content-Type: application/json"
],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}
package main

import (
"fmt"
"strings"
"net/http"
"io"
)

func main() {

url := "https://cool.jobmojito.com/functions/v1/job-interview-pdf"

payload := strings.NewReader("{\n \"interview_result_id\": \"93c98d21-e04d-4a84-9afa-ed154cf73636\",\n \"interview_result_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"export_features_result\": {\n \"mojito_language_code\": \"en\",\n \"contact_details\": true,\n \"ai_recruiter_assessment\": true,\n \"ai_scoring_rubric\": false,\n \"analytics\": true,\n \"transcript\": true,\n \"files\": true,\n \"answer_recording\": false,\n \"session_recording\": false,\n \"group_by_question\": false\n },\n \"store_file\": true\n}")

req, _ := http.NewRequest("POST", url, payload)

req.Header.Add("Authorization", "Bearer <token>")
req.Header.Add("Content-Type", "application/json")

res, _ := http.DefaultClient.Do(req)

defer res.Body.Close()
body, _ := io.ReadAll(res.Body)

fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://cool.jobmojito.com/functions/v1/job-interview-pdf")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"interview_result_id\": \"93c98d21-e04d-4a84-9afa-ed154cf73636\",\n \"interview_result_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"export_features_result\": {\n \"mojito_language_code\": \"en\",\n \"contact_details\": true,\n \"ai_recruiter_assessment\": true,\n \"ai_scoring_rubric\": false,\n \"analytics\": true,\n \"transcript\": true,\n \"files\": true,\n \"answer_recording\": false,\n \"session_recording\": false,\n \"group_by_question\": false\n },\n \"store_file\": true\n}")
.asString();
require 'uri'
require 'net/http'

url = URI("https://cool.jobmojito.com/functions/v1/job-interview-pdf")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["Authorization"] = 'Bearer <token>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"interview_result_id\": \"93c98d21-e04d-4a84-9afa-ed154cf73636\",\n \"interview_result_ids\": [\n \"3c90c3cc-0d44-4b50-8888-8dd25736052a\"\n ],\n \"export_features_result\": {\n \"mojito_language_code\": \"en\",\n \"contact_details\": true,\n \"ai_recruiter_assessment\": true,\n \"ai_scoring_rubric\": false,\n \"analytics\": true,\n \"transcript\": true,\n \"files\": true,\n \"answer_recording\": false,\n \"session_recording\": false,\n \"group_by_question\": false\n },\n \"store_file\": true\n}"

response = http.request(request)
puts response.read_body
{
  "pdf_export_url": "<string>",
  "pdf_export_valid_until": "2026-09-01T12:00:00.000Z"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}
{
"error": "Field is required.",
"name": "interview_result_id"
}

Authorizations

Authorization
string
header
required

Supabase JWT — Authorization: Bearer <token>.

Body

application/json
export_type
enum<string>
required
Available options:
pdf,
html,
json
interview_result_id
string<uuid>
Example:

"93c98d21-e04d-4a84-9afa-ed154cf73636"

interview_result_ids
string<uuid>[]

Generate a single combined report for multiple results.

export_features_result
object
store_file
boolean

When true (pdf only), persist the file to storage and return a signed URL.

Response

The generated report. The body is one of three shapes, selected by the request export_type: pdf{ pdf_export_url, pdf_export_valid_until }; html{ html_export }; json{ json_export }.

The generated report. Exactly one of the three shapes below is returned, selected by the request export_type: pdf{ pdf_export_url, pdf_export_valid_until }; html{ html_export }; json{ json_export }.

pdf_export_url
string<uri>
required

Signed URL of the generated PDF.

pdf_export_valid_until
string
required

ISO timestamp until which the signed URL is valid.

Example:

"2026-09-01T12:00:00.000Z"