v1

latestOpenAPI 3.1.02026-07-26549156879.0 KB
Ats > Application

Applies an Application

Apply to a job posting

post/api/2026-07-01/resources/ats/applications/apply

Request body

company_idstring

Company id of the application

first_namestring required

Application first name

last_namestring required

Application last name

ats_job_posting_idstring required

Application job posting id

emailstring required

Application candidate email

phonestring

Application candidate phone

sourcestring

Application source

mediumstring

Application medium

cover_letterstring

Application cover letter

genderstring

gender of the candidate.

consent_to_talent_poolboolean

Application consent talent pool

Example request

{
  "company_id": "1",
  "first_name": "Jane",
  "last_name": "Doe",
  "ats_job_posting_id": "1",
  "email": "jane.doe@service.com",
  "phone": "34612345678",
  "source": "source",
  "medium": "medium",
  "cover_letter": "This is my cover letter for the position",
  "gender": "female",
  "consent_to_talent_pool": true
}

Response

OK

idstring required

Id of the application

company_idstring required

Company id of the application

ats_job_posting_idstring required

Job posting id of the application

ats_candidate_idstring required

Candidate id of the application

employee_idstring

Employee id of the application

phonestring

Candidate phone of the application

qualifiedboolean

Qualified of the application

ats_application_phase_idstring

Application phase id

created_atstring required

Application created at date

cover_letterstring

Application cover letter

cvobject

CV file attachment of the application (includes filename, url, byte_size, content_type, created_at)

ats_conversation_idstring

Application conversation id

mediumstring

Application medium

rating_averageinteger

Application average rating

ats_rejection_reason_idstring

Application rejection reason id

source_idstring

Application source id

Example response

{
  "id": "1",
  "company_id": "1",
  "ats_job_posting_id": "1",
  "ats_candidate_id": "1",
  "employee_id": "1",
  "phone": "34612345678",
  "qualified": true,
  "ats_application_phase_id": "1",
  "created_at": "2024-08-19T14:30:00.000Z",
  "cover_letter": "This is my cover letter for the position",
  "ats_conversation_id": "1",
  "medium": "medium",
  "rating_average": 1,
  "ats_rejection_reason_id": "1",
  "source_id": "1"
}