Candidate Add

POST /candidate

This API is to add candidate. This is an authendicated API so we need to pass bearer token in request header to access the data.

Headers

application/json

Body

Responses

POST /candidate
curl \
 -X POST https://api-console.logezy.co/v1/candidate \
 -H "Content-Type: string" \
 -H "Accept: string" \
 -d '{"first_name":"string","last_name":"string","email":"string","send_email":true,"has_contact_profile_view":true,"address_line1":"string","place":"string","post_code":"string","mobile_prefix":"string","mobile_number":"string","preferred_name":"string","employment_type":42,"employment_type_company_id":42,"dbs_pvg_no":"string","dbs_issue_date":"2023-11-01","dbs_exp_date":"2023-11-01","next_check_date":"2023-11-01","nmc_pin_number":"string","nationality":"string","dob":"2021-04-13","place_of_birth":"string","gender":"male","start_date":"2024-05-04","end_date":"2024-05-04","is_driver":true,"nappi_trained":true,"medication_trained":true,"weekly_hours":42.0,"selected_profile_job":[42],"jobs":[42],"regions":[42],"ni_number":"string","tax_code":"string","payroll_id":"string","payroll_job_status":"nil","payroll_frequency":"Weekly","payment_reference":"string"}'
Request example
# Headers
Content-Type: string
Accept: string

# Payload
{
  "first_name": "string",
  "last_name": "string",
  "email": "string",
  "send_email": true,
  "has_contact_profile_view": true,
  "address_line1": "string",
  "place": "string",
  "post_code": "string",
  "mobile_prefix": "string",
  "mobile_number": "string",
  "preferred_name": "string",
  "employment_type": 42,
  "employment_type_company_id": 42,
  "dbs_pvg_no": "string",
  "dbs_issue_date": "2023-11-01",
  "dbs_exp_date": "2023-11-01",
  "next_check_date": "2023-11-01",
  "nmc_pin_number": "string",
  "nationality": "string",
  "dob": "2021-04-13",
  "place_of_birth": "string",
  "gender": "male",
  "start_date": "2024-05-04",
  "end_date": "2024-05-04",
  "is_driver": true,
  "nappi_trained": true,
  "medication_trained": true,
  "weekly_hours": 42.0,
  "selected_profile_job": [
    42
  ],
  "jobs": [
    42
  ],
  "regions": [
    42
  ],
  "ni_number": "string",
  "tax_code": "string",
  "payroll_id": "string",
  "payroll_job_status": "nil",
  "payroll_frequency": "Weekly",
  "payment_reference": "string"
}