Lodol Docs

Ashby

API actions for the Ashby integration.

Ashby

Manage candidates, jobs, and interviews in Ashby.


Advance an Ashby application

Advance an application to the next stage and optionally add a note.

Parameters

ParameterTypeRequiredDescription
application_idstringYesThe Ashby application ID.
stage_idstringYesThe target stage ID.
notestringNoOptional note explaining the stage change.

Response

{}

Create an Ashby application

Attach a candidate to a job by creating a new application in Ashby.

Parameters

ParameterTypeRequiredDescription
job_idstringYesThe Ashby job ID.
candidate_idstringYesThe Ashby candidate ID.
sourcestringNoOptional application source (e.g., Referral, Agency).
resume_urlstringNoOptional resume link if not already on the candidate profile.

Response

{}

Create an Ashby candidate

Create a new candidate profile in Ashby with contact information.

Parameters

ParameterTypeRequiredDescription
first_namestringYesThe candidate's first name.
last_namestringYesThe candidate's last name.
emailstringYesThe candidate's email address.
phonestringNoOptional phone number.
resume_urlstringNoLink to the candidate's resume or profile.

Response

{}

Get an Ashby job

Fetch job details from Ashby by job ID.

Parameters

ParameterTypeRequiredDescription
job_idstringYesThe Ashby job ID.

Response

{}

List Ashby jobs

Retrieve jobs from Ashby filtered by status, department, or location.

Parameters

ParameterTypeRequiredDescription
statusstringNoFilter by job status (e.g., open, closed).
departmentstringNoFilter by department name.
locationstringNoFilter by job location.

Response

{
  "jobs": [
    {}
  ]
}

Schedule an Ashby interview

Schedule an interview for an Ashby application with time and interviewer details.

Parameters

ParameterTypeRequiredDescription
application_idstringYesThe Ashby application ID.
start_timestringYesInterview start time in ISO 8601 format.
end_timestringYesInterview end time in ISO 8601 format.
interviewer_emailstringYesEmail address of the interviewer.
locationstringNoOptional meeting location or conferencing link.

Response

{}

On this page