Applications
Create Application
ATS
- Overview
- Use Cases
Common Guides
API Reference
- Applications
- GETList Applications
- POSTCreate Application
- GETGet Application
- PATCHUpdate an Application
- POSTMove Application
- POSTReject Application
- GETGet Application Scorecard
- Offers
- Scorecards
- Notes
- Scheduled Interviews
- Documents
- GET
- Candidates
- Custom Field Definitions
- Departments
- Interview Stages
- Interviews
- Jobs
- Lists
- Locations
- Rejected Reasons
- Users
- Job Postings
- Offers
- Assessments
- Background Checks
Applications
Create Application
POST
/
unified
/
ats
/
applications
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": [
{
"type": "personal",
"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"
}
]
}
}'
{
"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"
}
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Headers
The account identifier
Body
application/json
Response
201
application/json
The application was created successfully.
The response is of type object
.
Was this page helpful?
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": [
{
"type": "personal",
"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"
}
]
}
}'
{
"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"
}
}