Add candidate system data
Company > Candidate
Add candidate system data
POST /gin/v1/company/candidate
This endpoint allows the addition of a candidate to a company based on Company Id or authorization api key
Request Body
-
phone(string, optional): The phone number of the candidate. (Required if email is missing) -
email(string, optional): The email address of the candidate. (Required if phone is missing) -
source(string, optional): The source of imported candidate. If empty the result will be -
employee(boolean, optional): Is this person an employee or a candidate ?. If empty the result will be false
Response
The response for this request can be represented as a JSON schema:
{
"type": "object",
"properties": {
"message": {
"type": "string"
},
"status": {
"type": "string"
},
"data": {
"type": "object",
"properties": {
"slug": {
"type": "string"
}
}
}
}
}
POST
Add candidate system data
Headers
Body
application/json
The body is of type object.
Response
Created
The response is of type string.