ATS
- Overview
- Use Cases
Common Guides
API Reference
- Applications
- Assessments
- Background Checks
- Candidates
- Custom Field Definitions
- Departments
- Interview Stages
- Interviews
- Job Postings
- Jobs
- Lists
- Locations
- Offers
- Rejected Reasons
- Users
Get Candidate
curl --request GET \
--url https://api.stackone.com/unified/ats/candidates/{id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'x-account-id: <x-account-id>'
{
"data": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"unified_custom_fields": {
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
},
"name": "Romain Sestier",
"first_name": "Romain",
"last_name": "Sestier",
"email": "sestier.romain123@gmail.com",
"emails": [
{
"type": "personal",
"value": "sestier.romain123@gmail.com"
}
],
"social_links": [
{
"type": "linkedin",
"url": "https://www.linkedin.com/in/romainsestier/"
}
],
"phone": "+16178294093",
"phone_numbers": [
{
"type": "personal",
"phone": "+447700112233"
}
],
"company": "Company Inc.",
"title": "Software Engineer",
"application_ids": [
"123e4567-e89b-12d3-a456-426614174000",
"523e1234-e89b-fdd2-a456-762545121101"
],
"remote_application_ids": [
"123e4567-e89b-12d3-a456-426614174000",
"523e1234-e89b-fdd2-a456-762545121101"
],
"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"
}
],
"created_at": "2021-01-01T01:01:01.000Z",
"updated_at": "2021-01-01T01:01:01.000Z"
},
"raw": [
{
"method": "<string>",
"url": "<string>",
"body": "<string>",
"response": {}
}
]
}
Authorizations
Basic authentication header of the form Basic <encoded-value>
, where <encoded-value>
is the base64-encoded string username:password
.
Headers
The account identifier
Path Parameters
Query Parameters
Indicates that the raw request result is returned
Query parameters that can be used to pass through parameters to the underlying provider request by surrounding them with 'proxy' key
The comma separated list of fields that will be returned in the response (if empty, all fields are returned)
"id,remote_id,name,first_name,last_name,email,emails,social_links,phone,phone_numbers,company,country,title,application_ids,remote_application_ids,hired_at,custom_fields,created_at,updated_at"
The comma separated list of fields that will be included in the response
"custom_fields"
Response
Unique identifier
"8187e5da-dc77-475e-9949-af0f1fa4e4e3"
Provider's unique identifier
"8187e5da-dc77-475e-9949-af0f1fa4e4e3"
Custom Unified Fields configured in your StackOne project
{
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
}
Candidate name
"Romain Sestier"
Candidate first name
"Romain"
Candidate last name
"Sestier"
Candidate email
"sestier.romain123@gmail.com"
Candidate phone number
"+16178294093"
Candidate company
"Company Inc."
Candidate title
"Software Engineer"
List of candidate application IDs
[
"123e4567-e89b-12d3-a456-426614174000",
"523e1234-e89b-fdd2-a456-762545121101"
]
Provider's list of candidate application IDs
[
"123e4567-e89b-12d3-a456-426614174000",
"523e1234-e89b-fdd2-a456-762545121101"
]
Candidate hired date
"2021-01-01T01:01:01.000Z"
Candidate country
"United States"
The candidate custom fields
Unique identifier
"8187e5da-dc77-475e-9949-af0f1fa4e4e3"
Provider's unique identifier
"8187e5da-dc77-475e-9949-af0f1fa4e4e3"
The name of the custom field.
"Training Completion Status"
The value associated with the custom field.
"Completed"
The unique identifier for the value of the custom field.
"value_456"
Provider's unique identifier for the value of the custom field.
"e3cb75bf-aa84-466e-a6c1-b8322b257a48"
Candidate created date
"2021-01-01T01:01:01.000Z"
Candidate updated date
"2021-01-01T01:01:01.000Z"
Was this page helpful?
curl --request GET \
--url https://api.stackone.com/unified/ats/candidates/{id} \
--header 'Authorization: Basic <encoded-value>' \
--header 'x-account-id: <x-account-id>'
{
"data": {
"id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"remote_id": "8187e5da-dc77-475e-9949-af0f1fa4e4e3",
"unified_custom_fields": {
"my_project_custom_field_1": "REF-1236",
"my_project_custom_field_2": "some other value"
},
"name": "Romain Sestier",
"first_name": "Romain",
"last_name": "Sestier",
"email": "sestier.romain123@gmail.com",
"emails": [
{
"type": "personal",
"value": "sestier.romain123@gmail.com"
}
],
"social_links": [
{
"type": "linkedin",
"url": "https://www.linkedin.com/in/romainsestier/"
}
],
"phone": "+16178294093",
"phone_numbers": [
{
"type": "personal",
"phone": "+447700112233"
}
],
"company": "Company Inc.",
"title": "Software Engineer",
"application_ids": [
"123e4567-e89b-12d3-a456-426614174000",
"523e1234-e89b-fdd2-a456-762545121101"
],
"remote_application_ids": [
"123e4567-e89b-12d3-a456-426614174000",
"523e1234-e89b-fdd2-a456-762545121101"
],
"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"
}
],
"created_at": "2021-01-01T01:01:01.000Z",
"updated_at": "2021-01-01T01:01:01.000Z"
},
"raw": [
{
"method": "<string>",
"url": "<string>",
"body": "<string>",
"response": {}
}
]
}