Generate criteria (AI preview, not persisted)
curl --request POST \
--url https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"additional_instructions": "<string>"
}
'import requests
url = "https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate"
payload = { "additional_instructions": "<string>" }
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({additional_instructions: '<string>'})
};
fetch('https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate', 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://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate",
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([
'additional_instructions' => '<string>'
]),
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://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate"
payload := strings.NewReader("{\n \"additional_instructions\": \"<string>\"\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://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"additional_instructions\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate")
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 \"additional_instructions\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"criteria": [
{
"name": "<string>",
"description": "<string>",
"kind": "competency",
"required": true,
"weight": "<string>",
"minimum_score": 123,
"level_1_description": "<string>",
"level_2_description": "<string>",
"level_3_description": "<string>",
"level_4_description": "<string>",
"level_5_description": "<string>",
"sequence_number": 123,
"reasoning": "<string>"
}
]
}[
{
"code": "error",
"detail": "<string>",
"attr": "<string>"
}
][
{
"code": "error",
"detail": "<string>",
"attr": "<string>"
}
][
{
"code": "error",
"detail": "<string>",
"attr": "<string>"
}
]Interview Criteria
Generate criteria (AI preview, not persisted)
Generates a draft you can review before saving. The call runs synchronously and returns the generated output in the response; it is safe to retry and writes nothing; persist the result with the separate bulk PUT.
POST
/
jobs
/
{job_id}
/
interview-config
/
criteria
/
generate
Generate criteria (AI preview, not persisted)
curl --request POST \
--url https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"additional_instructions": "<string>"
}
'import requests
url = "https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate"
payload = { "additional_instructions": "<string>" }
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({additional_instructions: '<string>'})
};
fetch('https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate', 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://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate",
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([
'additional_instructions' => '<string>'
]),
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://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate"
payload := strings.NewReader("{\n \"additional_instructions\": \"<string>\"\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://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate")
.header("Authorization", "Bearer <token>")
.header("Content-Type", "application/json")
.body("{\n \"additional_instructions\": \"<string>\"\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.talentunveiled.com/api/v2/jobs/{job_id}/interview-config/criteria/generate")
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 \"additional_instructions\": \"<string>\"\n}"
response = http.request(request)
puts response.read_body{
"criteria": [
{
"name": "<string>",
"description": "<string>",
"kind": "competency",
"required": true,
"weight": "<string>",
"minimum_score": 123,
"level_1_description": "<string>",
"level_2_description": "<string>",
"level_3_description": "<string>",
"level_4_description": "<string>",
"level_5_description": "<string>",
"sequence_number": 123,
"reasoning": "<string>"
}
]
}[
{
"code": "error",
"detail": "<string>",
"attr": "<string>"
}
][
{
"code": "error",
"detail": "<string>",
"attr": "<string>"
}
][
{
"code": "error",
"detail": "<string>",
"attr": "<string>"
}
]⌘I

