curl --request POST \
--url https://api.stackone.com/unified/ats/applications \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--header 'x-account-id: <x-account-id>' \
--data '
{
"passthrough": {
"other_known_names": "John Doe"
},
"job_id": "4071538b-3cac-4fbf-ac76-f78ed250ffdd",
"job_posting_id": "1c702a20-8de8-4d03-ac18-cbf4ac42eb51",
"location_id": "dd8d41d1-5eb8-4408-9c87-9ba44604eae4",
"application_status": {
"value": "hired",
"source_value": "Hired"
},
"questionnaires": {
"id": "right_to_work",
"answers": [
{
"id": "answer1",
"type": "text",
"values": [
"Yes"
]
}
]
},
"source": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "LinkedIn"
},
"candidate_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
"candidate": {
"passthrough": {
"other_known_names": "John Doe"
},
"unified_custom_fields": {
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
},
"phone_number": "+1234567890",
"phone_numbers": [
{
"phone": "+447700112233"
}
],
"name": "Romain Sestier",
"first_name": "Romain",
"last_name": "Sestier",
"email": "sestier.romain123@gmail.com",
"social_links": [
{
"type": "linkedin",
"url": "https://www.linkedin.com/in/romainsestier/"
}
],
"company": "Company Inc.",
"title": "Software Engineer",
"hired_at": "2021-01-01T01:01:01.000Z",
"country": "United States",
"custom_fields": [
{
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "Training Completion Status",
"value": "Completed",
"value_id": "value_456",
"remote_value_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48"
}
]
},
"documents": [
{
"name": "weather-forecast",
"file_format": {
"value": "pdf",
"source_value": "application/pdf"
},
"content": "VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE",
"category_id": "6530",
"path": "/path/to/file",
"confidential": {
"value": "true",
"source_value": "public"
},
"category": {
"value": "resume",
"source_value": "550e8400-e29b-41d4-a716-446655440000"
}
}
]
}
'import requests
url = "https://api.stackone.com/unified/ats/applications"
payload = {
"passthrough": { "other_known_names": "John Doe" },
"job_id": "4071538b-3cac-4fbf-ac76-f78ed250ffdd",
"job_posting_id": "1c702a20-8de8-4d03-ac18-cbf4ac42eb51",
"location_id": "dd8d41d1-5eb8-4408-9c87-9ba44604eae4",
"application_status": {
"value": "hired",
"source_value": "Hired"
},
"questionnaires": {
"id": "right_to_work",
"answers": [
{
"id": "answer1",
"type": "text",
"values": ["Yes"]
}
]
},
"source": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "LinkedIn"
},
"candidate_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
"candidate": {
"passthrough": { "other_known_names": "John Doe" },
"unified_custom_fields": {
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
},
"phone_number": "+1234567890",
"phone_numbers": [{ "phone": "+447700112233" }],
"name": "Romain Sestier",
"first_name": "Romain",
"last_name": "Sestier",
"email": "sestier.romain123@gmail.com",
"social_links": [
{
"type": "linkedin",
"url": "https://www.linkedin.com/in/romainsestier/"
}
],
"company": "Company Inc.",
"title": "Software Engineer",
"hired_at": "2021-01-01T01:01:01.000Z",
"country": "United States",
"custom_fields": [
{
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "Training Completion Status",
"value": "Completed",
"value_id": "value_456",
"remote_value_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48"
}
]
},
"documents": [
{
"name": "weather-forecast",
"file_format": {
"value": "pdf",
"source_value": "application/pdf"
},
"content": "VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE",
"category_id": "6530",
"path": "/path/to/file",
"confidential": {
"value": "true",
"source_value": "public"
},
"category": {
"value": "resume",
"source_value": "550e8400-e29b-41d4-a716-446655440000"
}
}
]
}
headers = {
"x-account-id": "<x-account-id>",
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-account-id': '<x-account-id>',
Authorization: 'Basic <encoded-value>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
passthrough: {other_known_names: 'John Doe'},
job_id: '4071538b-3cac-4fbf-ac76-f78ed250ffdd',
job_posting_id: '1c702a20-8de8-4d03-ac18-cbf4ac42eb51',
location_id: 'dd8d41d1-5eb8-4408-9c87-9ba44604eae4',
application_status: {value: 'hired', source_value: 'Hired'},
questionnaires: {id: 'right_to_work', answers: [{id: 'answer1', type: 'text', values: ['Yes']}]},
source: {id: '8187e5da-dc77-475e-9949-af0f1fa4e4e3', name: 'LinkedIn'},
candidate_id: 'e3cb75bf-aa84-466e-a6c1-b8322b257a48',
candidate: {
passthrough: {other_known_names: 'John Doe'},
unified_custom_fields: {
my_project_custom_field_1: 'REF-1236',
my_project_custom_field_2: 'some other value'
},
phone_number: '+1234567890',
phone_numbers: [{phone: '+447700112233'}],
name: 'Romain Sestier',
first_name: 'Romain',
last_name: 'Sestier',
email: 'sestier.romain123@gmail.com',
social_links: [{type: 'linkedin', url: 'https://www.linkedin.com/in/romainsestier/'}],
company: 'Company Inc.',
title: 'Software Engineer',
hired_at: '2021-01-01T01:01:01.000Z',
country: 'United States',
custom_fields: [
{
id: '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
remote_id: '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
name: 'Training Completion Status',
value: 'Completed',
value_id: 'value_456',
remote_value_id: 'e3cb75bf-aa84-466e-a6c1-b8322b257a48'
}
]
},
documents: [
{
name: 'weather-forecast',
file_format: {value: 'pdf', source_value: 'application/pdf'},
content: 'VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE',
category_id: '6530',
path: '/path/to/file',
confidential: {value: 'true', source_value: 'public'},
category: {value: 'resume', source_value: '550e8400-e29b-41d4-a716-446655440000'}
}
]
})
};
fetch('https://api.stackone.com/unified/ats/applications', 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.stackone.com/unified/ats/applications",
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([
'passthrough' => [
'other_known_names' => 'John Doe'
],
'job_id' => '4071538b-3cac-4fbf-ac76-f78ed250ffdd',
'job_posting_id' => '1c702a20-8de8-4d03-ac18-cbf4ac42eb51',
'location_id' => 'dd8d41d1-5eb8-4408-9c87-9ba44604eae4',
'application_status' => [
'value' => 'hired',
'source_value' => 'Hired'
],
'questionnaires' => [
'id' => 'right_to_work',
'answers' => [
[
'id' => 'answer1',
'type' => 'text',
'values' => [
'Yes'
]
]
]
],
'source' => [
'id' => '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
'name' => 'LinkedIn'
],
'candidate_id' => 'e3cb75bf-aa84-466e-a6c1-b8322b257a48',
'candidate' => [
'passthrough' => [
'other_known_names' => 'John Doe'
],
'unified_custom_fields' => [
'my_project_custom_field_1' => 'REF-1236',
'my_project_custom_field_2' => 'some other value'
],
'phone_number' => '+1234567890',
'phone_numbers' => [
[
'phone' => '+447700112233'
]
],
'name' => 'Romain Sestier',
'first_name' => 'Romain',
'last_name' => 'Sestier',
'email' => 'sestier.romain123@gmail.com',
'social_links' => [
[
'type' => 'linkedin',
'url' => 'https://www.linkedin.com/in/romainsestier/'
]
],
'company' => 'Company Inc.',
'title' => 'Software Engineer',
'hired_at' => '2021-01-01T01:01:01.000Z',
'country' => 'United States',
'custom_fields' => [
[
'id' => '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
'remote_id' => '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
'name' => 'Training Completion Status',
'value' => 'Completed',
'value_id' => 'value_456',
'remote_value_id' => 'e3cb75bf-aa84-466e-a6c1-b8322b257a48'
]
]
],
'documents' => [
[
'name' => 'weather-forecast',
'file_format' => [
'value' => 'pdf',
'source_value' => 'application/pdf'
],
'content' => 'VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE',
'category_id' => '6530',
'path' => '/path/to/file',
'confidential' => [
'value' => 'true',
'source_value' => 'public'
],
'category' => [
'value' => 'resume',
'source_value' => '550e8400-e29b-41d4-a716-446655440000'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json",
"x-account-id: <x-account-id>"
],
]);
$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.stackone.com/unified/ats/applications"
payload := strings.NewReader("{\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"job_id\": \"4071538b-3cac-4fbf-ac76-f78ed250ffdd\",\n \"job_posting_id\": \"1c702a20-8de8-4d03-ac18-cbf4ac42eb51\",\n \"location_id\": \"dd8d41d1-5eb8-4408-9c87-9ba44604eae4\",\n \"application_status\": {\n \"value\": \"hired\",\n \"source_value\": \"Hired\"\n },\n \"questionnaires\": {\n \"id\": \"right_to_work\",\n \"answers\": [\n {\n \"id\": \"answer1\",\n \"type\": \"text\",\n \"values\": [\n \"Yes\"\n ]\n }\n ]\n },\n \"source\": {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"LinkedIn\"\n },\n \"candidate_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\",\n \"candidate\": {\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"unified_custom_fields\": {\n \"my_project_custom_field_1\": \"REF-1236\",\n \"my_project_custom_field_2\": \"some other value\"\n },\n \"phone_number\": \"+1234567890\",\n \"phone_numbers\": [\n {\n \"phone\": \"+447700112233\"\n }\n ],\n \"name\": \"Romain Sestier\",\n \"first_name\": \"Romain\",\n \"last_name\": \"Sestier\",\n \"email\": \"sestier.romain123@gmail.com\",\n \"social_links\": [\n {\n \"type\": \"linkedin\",\n \"url\": \"https://www.linkedin.com/in/romainsestier/\"\n }\n ],\n \"company\": \"Company Inc.\",\n \"title\": \"Software Engineer\",\n \"hired_at\": \"2021-01-01T01:01:01.000Z\",\n \"country\": \"United States\",\n \"custom_fields\": [\n {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"remote_id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"Training Completion Status\",\n \"value\": \"Completed\",\n \"value_id\": \"value_456\",\n \"remote_value_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\"\n }\n ]\n },\n \"documents\": [\n {\n \"name\": \"weather-forecast\",\n \"file_format\": {\n \"value\": \"pdf\",\n \"source_value\": \"application/pdf\"\n },\n \"content\": \"VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE\",\n \"category_id\": \"6530\",\n \"path\": \"/path/to/file\",\n \"confidential\": {\n \"value\": \"true\",\n \"source_value\": \"public\"\n },\n \"category\": {\n \"value\": \"resume\",\n \"source_value\": \"550e8400-e29b-41d4-a716-446655440000\"\n }\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-account-id", "<x-account-id>")
req.Header.Add("Authorization", "Basic <encoded-value>")
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.stackone.com/unified/ats/applications")
.header("x-account-id", "<x-account-id>")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"job_id\": \"4071538b-3cac-4fbf-ac76-f78ed250ffdd\",\n \"job_posting_id\": \"1c702a20-8de8-4d03-ac18-cbf4ac42eb51\",\n \"location_id\": \"dd8d41d1-5eb8-4408-9c87-9ba44604eae4\",\n \"application_status\": {\n \"value\": \"hired\",\n \"source_value\": \"Hired\"\n },\n \"questionnaires\": {\n \"id\": \"right_to_work\",\n \"answers\": [\n {\n \"id\": \"answer1\",\n \"type\": \"text\",\n \"values\": [\n \"Yes\"\n ]\n }\n ]\n },\n \"source\": {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"LinkedIn\"\n },\n \"candidate_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\",\n \"candidate\": {\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"unified_custom_fields\": {\n \"my_project_custom_field_1\": \"REF-1236\",\n \"my_project_custom_field_2\": \"some other value\"\n },\n \"phone_number\": \"+1234567890\",\n \"phone_numbers\": [\n {\n \"phone\": \"+447700112233\"\n }\n ],\n \"name\": \"Romain Sestier\",\n \"first_name\": \"Romain\",\n \"last_name\": \"Sestier\",\n \"email\": \"sestier.romain123@gmail.com\",\n \"social_links\": [\n {\n \"type\": \"linkedin\",\n \"url\": \"https://www.linkedin.com/in/romainsestier/\"\n }\n ],\n \"company\": \"Company Inc.\",\n \"title\": \"Software Engineer\",\n \"hired_at\": \"2021-01-01T01:01:01.000Z\",\n \"country\": \"United States\",\n \"custom_fields\": [\n {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"remote_id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"Training Completion Status\",\n \"value\": \"Completed\",\n \"value_id\": \"value_456\",\n \"remote_value_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\"\n }\n ]\n },\n \"documents\": [\n {\n \"name\": \"weather-forecast\",\n \"file_format\": {\n \"value\": \"pdf\",\n \"source_value\": \"application/pdf\"\n },\n \"content\": \"VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE\",\n \"category_id\": \"6530\",\n \"path\": \"/path/to/file\",\n \"confidential\": {\n \"value\": \"true\",\n \"source_value\": \"public\"\n },\n \"category\": {\n \"value\": \"resume\",\n \"source_value\": \"550e8400-e29b-41d4-a716-446655440000\"\n }\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stackone.com/unified/ats/applications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-account-id"] = '<x-account-id>'
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"job_id\": \"4071538b-3cac-4fbf-ac76-f78ed250ffdd\",\n \"job_posting_id\": \"1c702a20-8de8-4d03-ac18-cbf4ac42eb51\",\n \"location_id\": \"dd8d41d1-5eb8-4408-9c87-9ba44604eae4\",\n \"application_status\": {\n \"value\": \"hired\",\n \"source_value\": \"Hired\"\n },\n \"questionnaires\": {\n \"id\": \"right_to_work\",\n \"answers\": [\n {\n \"id\": \"answer1\",\n \"type\": \"text\",\n \"values\": [\n \"Yes\"\n ]\n }\n ]\n },\n \"source\": {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"LinkedIn\"\n },\n \"candidate_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\",\n \"candidate\": {\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"unified_custom_fields\": {\n \"my_project_custom_field_1\": \"REF-1236\",\n \"my_project_custom_field_2\": \"some other value\"\n },\n \"phone_number\": \"+1234567890\",\n \"phone_numbers\": [\n {\n \"phone\": \"+447700112233\"\n }\n ],\n \"name\": \"Romain Sestier\",\n \"first_name\": \"Romain\",\n \"last_name\": \"Sestier\",\n \"email\": \"sestier.romain123@gmail.com\",\n \"social_links\": [\n {\n \"type\": \"linkedin\",\n \"url\": \"https://www.linkedin.com/in/romainsestier/\"\n }\n ],\n \"company\": \"Company Inc.\",\n \"title\": \"Software Engineer\",\n \"hired_at\": \"2021-01-01T01:01:01.000Z\",\n \"country\": \"United States\",\n \"custom_fields\": [\n {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"remote_id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"Training Completion Status\",\n \"value\": \"Completed\",\n \"value_id\": \"value_456\",\n \"remote_value_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\"\n }\n ]\n },\n \"documents\": [\n {\n \"name\": \"weather-forecast\",\n \"file_format\": {\n \"value\": \"pdf\",\n \"source_value\": \"application/pdf\"\n },\n \"content\": \"VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE\",\n \"category_id\": \"6530\",\n \"path\": \"/path/to/file\",\n \"confidential\": {\n \"value\": \"true\",\n \"source_value\": \"public\"\n },\n \"category\": {\n \"value\": \"resume\",\n \"source_value\": \"550e8400-e29b-41d4-a716-446655440000\"\n }\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"statusCode": 201,
"message": "Record created successfully.",
"timestamp": "2021-01-01T01:01:01.000Z",
"data": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3"
}
}{
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2023-05-30T00:00:00.000Z",
"data": {
"statusCode": 400,
"message": "Bad Request",
"headers": {
"content-type": "application/json",
"x-request-id": "5678c28b211dace4e0a0f9171e6b88c5"
}
},
"provider_errors": [
{
"status": 400,
"url": "https://api.provider.com/v1/resource",
"raw": {
"message": "Invalid input parameters"
},
"headers": {
"content-type": "application/json",
"x-request-id": "5678c28b211dace4e0a0f9171e6b88c5"
}
}
]
}{
"statusCode": 401,
"message": "Unauthorized",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 403,
"message": "Forbidden resource",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 404,
"message": "Not Found",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 408,
"message": "Request timed out",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 409,
"message": "Conflict",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 412,
"message": "Precondition failed",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 422,
"message": "Unprocessable Entity",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 429,
"message": "Too many requests",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 500,
"message": "Internal server error",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 501,
"message": "Not Implemented",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 502,
"message": "Bad Gateway",
"timestamp": "2023-05-30T00:00:00.000Z"
}Create Application
curl --request POST \
--url https://api.stackone.com/unified/ats/applications \
--header 'Authorization: Basic <encoded-value>' \
--header 'Content-Type: application/json' \
--header 'x-account-id: <x-account-id>' \
--data '
{
"passthrough": {
"other_known_names": "John Doe"
},
"job_id": "4071538b-3cac-4fbf-ac76-f78ed250ffdd",
"job_posting_id": "1c702a20-8de8-4d03-ac18-cbf4ac42eb51",
"location_id": "dd8d41d1-5eb8-4408-9c87-9ba44604eae4",
"application_status": {
"value": "hired",
"source_value": "Hired"
},
"questionnaires": {
"id": "right_to_work",
"answers": [
{
"id": "answer1",
"type": "text",
"values": [
"Yes"
]
}
]
},
"source": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "LinkedIn"
},
"candidate_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
"candidate": {
"passthrough": {
"other_known_names": "John Doe"
},
"unified_custom_fields": {
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
},
"phone_number": "+1234567890",
"phone_numbers": [
{
"phone": "+447700112233"
}
],
"name": "Romain Sestier",
"first_name": "Romain",
"last_name": "Sestier",
"email": "sestier.romain123@gmail.com",
"social_links": [
{
"type": "linkedin",
"url": "https://www.linkedin.com/in/romainsestier/"
}
],
"company": "Company Inc.",
"title": "Software Engineer",
"hired_at": "2021-01-01T01:01:01.000Z",
"country": "United States",
"custom_fields": [
{
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "Training Completion Status",
"value": "Completed",
"value_id": "value_456",
"remote_value_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48"
}
]
},
"documents": [
{
"name": "weather-forecast",
"file_format": {
"value": "pdf",
"source_value": "application/pdf"
},
"content": "VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE",
"category_id": "6530",
"path": "/path/to/file",
"confidential": {
"value": "true",
"source_value": "public"
},
"category": {
"value": "resume",
"source_value": "550e8400-e29b-41d4-a716-446655440000"
}
}
]
}
'import requests
url = "https://api.stackone.com/unified/ats/applications"
payload = {
"passthrough": { "other_known_names": "John Doe" },
"job_id": "4071538b-3cac-4fbf-ac76-f78ed250ffdd",
"job_posting_id": "1c702a20-8de8-4d03-ac18-cbf4ac42eb51",
"location_id": "dd8d41d1-5eb8-4408-9c87-9ba44604eae4",
"application_status": {
"value": "hired",
"source_value": "Hired"
},
"questionnaires": {
"id": "right_to_work",
"answers": [
{
"id": "answer1",
"type": "text",
"values": ["Yes"]
}
]
},
"source": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "LinkedIn"
},
"candidate_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48",
"candidate": {
"passthrough": { "other_known_names": "John Doe" },
"unified_custom_fields": {
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
},
"phone_number": "+1234567890",
"phone_numbers": [{ "phone": "+447700112233" }],
"name": "Romain Sestier",
"first_name": "Romain",
"last_name": "Sestier",
"email": "sestier.romain123@gmail.com",
"social_links": [
{
"type": "linkedin",
"url": "https://www.linkedin.com/in/romainsestier/"
}
],
"company": "Company Inc.",
"title": "Software Engineer",
"hired_at": "2021-01-01T01:01:01.000Z",
"country": "United States",
"custom_fields": [
{
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"name": "Training Completion Status",
"value": "Completed",
"value_id": "value_456",
"remote_value_id": "e3cb75bf-aa84-466e-a6c1-b8322b257a48"
}
]
},
"documents": [
{
"name": "weather-forecast",
"file_format": {
"value": "pdf",
"source_value": "application/pdf"
},
"content": "VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE",
"category_id": "6530",
"path": "/path/to/file",
"confidential": {
"value": "true",
"source_value": "public"
},
"category": {
"value": "resume",
"source_value": "550e8400-e29b-41d4-a716-446655440000"
}
}
]
}
headers = {
"x-account-id": "<x-account-id>",
"Authorization": "Basic <encoded-value>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'x-account-id': '<x-account-id>',
Authorization: 'Basic <encoded-value>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
passthrough: {other_known_names: 'John Doe'},
job_id: '4071538b-3cac-4fbf-ac76-f78ed250ffdd',
job_posting_id: '1c702a20-8de8-4d03-ac18-cbf4ac42eb51',
location_id: 'dd8d41d1-5eb8-4408-9c87-9ba44604eae4',
application_status: {value: 'hired', source_value: 'Hired'},
questionnaires: {id: 'right_to_work', answers: [{id: 'answer1', type: 'text', values: ['Yes']}]},
source: {id: '8187e5da-dc77-475e-9949-af0f1fa4e4e3', name: 'LinkedIn'},
candidate_id: 'e3cb75bf-aa84-466e-a6c1-b8322b257a48',
candidate: {
passthrough: {other_known_names: 'John Doe'},
unified_custom_fields: {
my_project_custom_field_1: 'REF-1236',
my_project_custom_field_2: 'some other value'
},
phone_number: '+1234567890',
phone_numbers: [{phone: '+447700112233'}],
name: 'Romain Sestier',
first_name: 'Romain',
last_name: 'Sestier',
email: 'sestier.romain123@gmail.com',
social_links: [{type: 'linkedin', url: 'https://www.linkedin.com/in/romainsestier/'}],
company: 'Company Inc.',
title: 'Software Engineer',
hired_at: '2021-01-01T01:01:01.000Z',
country: 'United States',
custom_fields: [
{
id: '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
remote_id: '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
name: 'Training Completion Status',
value: 'Completed',
value_id: 'value_456',
remote_value_id: 'e3cb75bf-aa84-466e-a6c1-b8322b257a48'
}
]
},
documents: [
{
name: 'weather-forecast',
file_format: {value: 'pdf', source_value: 'application/pdf'},
content: 'VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE',
category_id: '6530',
path: '/path/to/file',
confidential: {value: 'true', source_value: 'public'},
category: {value: 'resume', source_value: '550e8400-e29b-41d4-a716-446655440000'}
}
]
})
};
fetch('https://api.stackone.com/unified/ats/applications', 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.stackone.com/unified/ats/applications",
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([
'passthrough' => [
'other_known_names' => 'John Doe'
],
'job_id' => '4071538b-3cac-4fbf-ac76-f78ed250ffdd',
'job_posting_id' => '1c702a20-8de8-4d03-ac18-cbf4ac42eb51',
'location_id' => 'dd8d41d1-5eb8-4408-9c87-9ba44604eae4',
'application_status' => [
'value' => 'hired',
'source_value' => 'Hired'
],
'questionnaires' => [
'id' => 'right_to_work',
'answers' => [
[
'id' => 'answer1',
'type' => 'text',
'values' => [
'Yes'
]
]
]
],
'source' => [
'id' => '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
'name' => 'LinkedIn'
],
'candidate_id' => 'e3cb75bf-aa84-466e-a6c1-b8322b257a48',
'candidate' => [
'passthrough' => [
'other_known_names' => 'John Doe'
],
'unified_custom_fields' => [
'my_project_custom_field_1' => 'REF-1236',
'my_project_custom_field_2' => 'some other value'
],
'phone_number' => '+1234567890',
'phone_numbers' => [
[
'phone' => '+447700112233'
]
],
'name' => 'Romain Sestier',
'first_name' => 'Romain',
'last_name' => 'Sestier',
'email' => 'sestier.romain123@gmail.com',
'social_links' => [
[
'type' => 'linkedin',
'url' => 'https://www.linkedin.com/in/romainsestier/'
]
],
'company' => 'Company Inc.',
'title' => 'Software Engineer',
'hired_at' => '2021-01-01T01:01:01.000Z',
'country' => 'United States',
'custom_fields' => [
[
'id' => '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
'remote_id' => '8187e5da-dc77-475e-9949-af0f1fa4e4e3',
'name' => 'Training Completion Status',
'value' => 'Completed',
'value_id' => 'value_456',
'remote_value_id' => 'e3cb75bf-aa84-466e-a6c1-b8322b257a48'
]
]
],
'documents' => [
[
'name' => 'weather-forecast',
'file_format' => [
'value' => 'pdf',
'source_value' => 'application/pdf'
],
'content' => 'VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE',
'category_id' => '6530',
'path' => '/path/to/file',
'confidential' => [
'value' => 'true',
'source_value' => 'public'
],
'category' => [
'value' => 'resume',
'source_value' => '550e8400-e29b-41d4-a716-446655440000'
]
]
]
]),
CURLOPT_HTTPHEADER => [
"Authorization: Basic <encoded-value>",
"Content-Type: application/json",
"x-account-id: <x-account-id>"
],
]);
$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.stackone.com/unified/ats/applications"
payload := strings.NewReader("{\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"job_id\": \"4071538b-3cac-4fbf-ac76-f78ed250ffdd\",\n \"job_posting_id\": \"1c702a20-8de8-4d03-ac18-cbf4ac42eb51\",\n \"location_id\": \"dd8d41d1-5eb8-4408-9c87-9ba44604eae4\",\n \"application_status\": {\n \"value\": \"hired\",\n \"source_value\": \"Hired\"\n },\n \"questionnaires\": {\n \"id\": \"right_to_work\",\n \"answers\": [\n {\n \"id\": \"answer1\",\n \"type\": \"text\",\n \"values\": [\n \"Yes\"\n ]\n }\n ]\n },\n \"source\": {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"LinkedIn\"\n },\n \"candidate_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\",\n \"candidate\": {\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"unified_custom_fields\": {\n \"my_project_custom_field_1\": \"REF-1236\",\n \"my_project_custom_field_2\": \"some other value\"\n },\n \"phone_number\": \"+1234567890\",\n \"phone_numbers\": [\n {\n \"phone\": \"+447700112233\"\n }\n ],\n \"name\": \"Romain Sestier\",\n \"first_name\": \"Romain\",\n \"last_name\": \"Sestier\",\n \"email\": \"sestier.romain123@gmail.com\",\n \"social_links\": [\n {\n \"type\": \"linkedin\",\n \"url\": \"https://www.linkedin.com/in/romainsestier/\"\n }\n ],\n \"company\": \"Company Inc.\",\n \"title\": \"Software Engineer\",\n \"hired_at\": \"2021-01-01T01:01:01.000Z\",\n \"country\": \"United States\",\n \"custom_fields\": [\n {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"remote_id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"Training Completion Status\",\n \"value\": \"Completed\",\n \"value_id\": \"value_456\",\n \"remote_value_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\"\n }\n ]\n },\n \"documents\": [\n {\n \"name\": \"weather-forecast\",\n \"file_format\": {\n \"value\": \"pdf\",\n \"source_value\": \"application/pdf\"\n },\n \"content\": \"VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE\",\n \"category_id\": \"6530\",\n \"path\": \"/path/to/file\",\n \"confidential\": {\n \"value\": \"true\",\n \"source_value\": \"public\"\n },\n \"category\": {\n \"value\": \"resume\",\n \"source_value\": \"550e8400-e29b-41d4-a716-446655440000\"\n }\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-account-id", "<x-account-id>")
req.Header.Add("Authorization", "Basic <encoded-value>")
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.stackone.com/unified/ats/applications")
.header("x-account-id", "<x-account-id>")
.header("Authorization", "Basic <encoded-value>")
.header("Content-Type", "application/json")
.body("{\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"job_id\": \"4071538b-3cac-4fbf-ac76-f78ed250ffdd\",\n \"job_posting_id\": \"1c702a20-8de8-4d03-ac18-cbf4ac42eb51\",\n \"location_id\": \"dd8d41d1-5eb8-4408-9c87-9ba44604eae4\",\n \"application_status\": {\n \"value\": \"hired\",\n \"source_value\": \"Hired\"\n },\n \"questionnaires\": {\n \"id\": \"right_to_work\",\n \"answers\": [\n {\n \"id\": \"answer1\",\n \"type\": \"text\",\n \"values\": [\n \"Yes\"\n ]\n }\n ]\n },\n \"source\": {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"LinkedIn\"\n },\n \"candidate_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\",\n \"candidate\": {\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"unified_custom_fields\": {\n \"my_project_custom_field_1\": \"REF-1236\",\n \"my_project_custom_field_2\": \"some other value\"\n },\n \"phone_number\": \"+1234567890\",\n \"phone_numbers\": [\n {\n \"phone\": \"+447700112233\"\n }\n ],\n \"name\": \"Romain Sestier\",\n \"first_name\": \"Romain\",\n \"last_name\": \"Sestier\",\n \"email\": \"sestier.romain123@gmail.com\",\n \"social_links\": [\n {\n \"type\": \"linkedin\",\n \"url\": \"https://www.linkedin.com/in/romainsestier/\"\n }\n ],\n \"company\": \"Company Inc.\",\n \"title\": \"Software Engineer\",\n \"hired_at\": \"2021-01-01T01:01:01.000Z\",\n \"country\": \"United States\",\n \"custom_fields\": [\n {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"remote_id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"Training Completion Status\",\n \"value\": \"Completed\",\n \"value_id\": \"value_456\",\n \"remote_value_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\"\n }\n ]\n },\n \"documents\": [\n {\n \"name\": \"weather-forecast\",\n \"file_format\": {\n \"value\": \"pdf\",\n \"source_value\": \"application/pdf\"\n },\n \"content\": \"VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE\",\n \"category_id\": \"6530\",\n \"path\": \"/path/to/file\",\n \"confidential\": {\n \"value\": \"true\",\n \"source_value\": \"public\"\n },\n \"category\": {\n \"value\": \"resume\",\n \"source_value\": \"550e8400-e29b-41d4-a716-446655440000\"\n }\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.stackone.com/unified/ats/applications")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-account-id"] = '<x-account-id>'
request["Authorization"] = 'Basic <encoded-value>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"job_id\": \"4071538b-3cac-4fbf-ac76-f78ed250ffdd\",\n \"job_posting_id\": \"1c702a20-8de8-4d03-ac18-cbf4ac42eb51\",\n \"location_id\": \"dd8d41d1-5eb8-4408-9c87-9ba44604eae4\",\n \"application_status\": {\n \"value\": \"hired\",\n \"source_value\": \"Hired\"\n },\n \"questionnaires\": {\n \"id\": \"right_to_work\",\n \"answers\": [\n {\n \"id\": \"answer1\",\n \"type\": \"text\",\n \"values\": [\n \"Yes\"\n ]\n }\n ]\n },\n \"source\": {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"LinkedIn\"\n },\n \"candidate_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\",\n \"candidate\": {\n \"passthrough\": {\n \"other_known_names\": \"John Doe\"\n },\n \"unified_custom_fields\": {\n \"my_project_custom_field_1\": \"REF-1236\",\n \"my_project_custom_field_2\": \"some other value\"\n },\n \"phone_number\": \"+1234567890\",\n \"phone_numbers\": [\n {\n \"phone\": \"+447700112233\"\n }\n ],\n \"name\": \"Romain Sestier\",\n \"first_name\": \"Romain\",\n \"last_name\": \"Sestier\",\n \"email\": \"sestier.romain123@gmail.com\",\n \"social_links\": [\n {\n \"type\": \"linkedin\",\n \"url\": \"https://www.linkedin.com/in/romainsestier/\"\n }\n ],\n \"company\": \"Company Inc.\",\n \"title\": \"Software Engineer\",\n \"hired_at\": \"2021-01-01T01:01:01.000Z\",\n \"country\": \"United States\",\n \"custom_fields\": [\n {\n \"id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"remote_id\": \"8187e5da-dc77-475e-9949-af0f1fa4e4e3\",\n \"name\": \"Training Completion Status\",\n \"value\": \"Completed\",\n \"value_id\": \"value_456\",\n \"remote_value_id\": \"e3cb75bf-aa84-466e-a6c1-b8322b257a48\"\n }\n ]\n },\n \"documents\": [\n {\n \"name\": \"weather-forecast\",\n \"file_format\": {\n \"value\": \"pdf\",\n \"source_value\": \"application/pdf\"\n },\n \"content\": \"VGhpcyBpc24ndCByZWFsbHkgYSBzYW1wbGUgZmlsZSwgYnV0IG5vIG9uZSB3aWxsIGV2ZXIga25vdyE\",\n \"category_id\": \"6530\",\n \"path\": \"/path/to/file\",\n \"confidential\": {\n \"value\": \"true\",\n \"source_value\": \"public\"\n },\n \"category\": {\n \"value\": \"resume\",\n \"source_value\": \"550e8400-e29b-41d4-a716-446655440000\"\n }\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"statusCode": 201,
"message": "Record created successfully.",
"timestamp": "2021-01-01T01:01:01.000Z",
"data": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3"
}
}{
"statusCode": 400,
"message": "Bad Request",
"timestamp": "2023-05-30T00:00:00.000Z",
"data": {
"statusCode": 400,
"message": "Bad Request",
"headers": {
"content-type": "application/json",
"x-request-id": "5678c28b211dace4e0a0f9171e6b88c5"
}
},
"provider_errors": [
{
"status": 400,
"url": "https://api.provider.com/v1/resource",
"raw": {
"message": "Invalid input parameters"
},
"headers": {
"content-type": "application/json",
"x-request-id": "5678c28b211dace4e0a0f9171e6b88c5"
}
}
]
}{
"statusCode": 401,
"message": "Unauthorized",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 403,
"message": "Forbidden resource",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 404,
"message": "Not Found",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 408,
"message": "Request timed out",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 409,
"message": "Conflict",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 412,
"message": "Precondition failed",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 422,
"message": "Unprocessable Entity",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 429,
"message": "Too many requests",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 500,
"message": "Internal server error",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 501,
"message": "Not Implemented",
"timestamp": "2023-05-30T00:00:00.000Z"
}{
"statusCode": 502,
"message": "Bad Gateway",
"timestamp": "2023-05-30T00:00:00.000Z"
}Authorizations
Basic authentication header of the form Basic <encoded-value>, where <encoded-value> is the base64-encoded string username:password.
Headers
The account identifier
Set to "heartbeat" to enable keep-alive newline heartbeats during long-running requests. Response includes Preference-Applied: heartbeat header when honored. (RFC 7240)
"heartbeat"
Body
Value to pass through to the provider
{ "other_known_names": "John Doe" }
Unique identifier of the job
"4071538b-3cac-4fbf-ac76-f78ed250ffdd"
Unique identifier of the job posting that is associated with application
"1c702a20-8de8-4d03-ac18-cbf4ac42eb51"
Unique identifier of the location
"dd8d41d1-5eb8-4408-9c87-9ba44604eae4"
Show child attributes
Show child attributes
Questionnaires associated with the application
Show child attributes
Show child attributes
{
"id": "right_to_work",
"answers": [
{
"id": "answer1",
"type": "text",
"values": ["Yes"]
}
]
}
Show child attributes
Show child attributes
Unique identifier of the candidate. Provide this OR candidate, but not both.
"e3cb75bf-aa84-466e-a6c1-b8322b257a48"
Candidate Properties. Provide this OR candidate_id, but not both. Providing this attempts to create a new candidate with the application.
Show child attributes
Show child attributes
Document Properties. Providing this attempts to upload files with the application.
Show child attributes
Show child attributes
Was this page helpful?