Skip to main content
POST
/
job
/
{jobId}
/
applicant
Create a job applicant
curl --request POST \
  --url https://public.api.micro1.ai/job/{jobId}/applicant \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '{
  "first_name": "John",
  "last_name": "Doe",
  "email_id": "john.doe@micro1.ai",
  "phone_number": "+1234567890",
  "resume_url": "https://micro1.ai/resume/h0gqkAcaDJ.pdf"
}'
{
  "status": true,
  "message": "Job applicant created successfully"
}

Authorizations

x-api-key
string
header
required

API key to access the API

Path Parameters

jobId
string
required

ID of the job

Body

application/json

Request body to create a job applicant

first_name
string
required

First name of the candidate

Example:

"John"

last_name
string
required

Last name of the candidate

Example:

"Doe"

email_id
string
required

Email of the candidate

Example:

"john.doe@micro1.ai"

phone_number
string

Phone number of the candidate

Example:

"+1234567890"

resume_url
string

URL of the resume (PDF or DOCX file)

Example:

"https://micro1.ai/resume/h0gqkAcaDJ.pdf"

Response

Successful response

Response for creating a job applicant

status
boolean

Status of the response

Example:

true

message
string

Message of the response

Example:

"Job applicant created successfully"