Fetch a job type
curl --request GET \
--url https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_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_URL => "https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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 := "https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"job_type": {
"id": "91f3c3e7-2b1d-4461-a4a1-b4f6eb8480bf",
"name": "Store Manager",
"job_description": "Lead store operations, coach associates, and deliver a consistent customer experience.",
"ai_interviewer_guidance": "Ask follow-up questions about leadership experience and scheduling availability.",
"qualifications": [
"Retail leadership experience",
"Weekend availability"
],
"resume_collection_type": "before_interview",
"should_force_fullscreen": true,
"should_record_video": true
}
}
}{
"error": 123,
"message": "<string>"
}Hiring
Fetch Job Type
Fetches the full job type configuration referenced by the provided job type ID.
GET
/
job-types
/
{JOB_TYPE_ID}
Fetch a job type
curl --request GET \
--url https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID} \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_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_URL => "https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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 := "https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.alpharun.com/api/v1/job-types/{JOB_TYPE_ID}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"data": {
"job_type": {
"id": "91f3c3e7-2b1d-4461-a4a1-b4f6eb8480bf",
"name": "Store Manager",
"job_description": "Lead store operations, coach associates, and deliver a consistent customer experience.",
"ai_interviewer_guidance": "Ask follow-up questions about leadership experience and scheduling availability.",
"qualifications": [
"Retail leadership experience",
"Weekend availability"
],
"resume_collection_type": "before_interview",
"should_force_fullscreen": true,
"should_record_video": true
}
}
}{
"error": 123,
"message": "<string>"
}⌘I