Getting Started
Endpoints
- Applications
- Candidates
- Candidate object
- GETGet candidates
- GETGet candidate by id
- PUTUpdate candidate
- Candidate Notes
- Candidate Tags
- Jobs
- Feedback
- Interviews
- Users
- Files
- Settings
- Webhooks
Webhooks
Candidates
Update candidate
Update a candidate
PUT
/
v1.0
/
{company_id}
/
candidates
/
{candidate_id}
curl --request PUT \
--url https://api.hirehive.com/v1.0/{company_id}/candidates/{candidate_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"rating": 123,
"social_profiles": [
{
"type": "linked_in",
"uri": "<string>"
}
]
}'
{
"data": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"rating": 123,
"application_ids": [
"<string>"
],
"social_profiles": [
{
"type": "linked_in",
"uri": "<string>"
}
]
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Response
200
application/json
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.hirehive.com/v1.0/{company_id}/candidates/{candidate_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"rating": 123,
"social_profiles": [
{
"type": "linked_in",
"uri": "<string>"
}
]
}'
{
"data": {
"id": "<string>",
"full_name": "<string>",
"first_name": "<string>",
"last_name": "<string>",
"email": "<string>",
"phone_number": "<string>",
"title": "<string>",
"company": "<string>",
"location": {
"address": "<string>",
"country": {
"name": "<string>",
"code": "<string>"
}
},
"image_url": "<string>",
"tags": [
{
"id": "<string>",
"name": "<string>"
}
],
"rating": 123,
"application_ids": [
"<string>"
],
"social_profiles": [
{
"type": "linked_in",
"uri": "<string>"
}
]
}
}
Assistant
Responses are generated using AI and may contain mistakes.