GET
/
v1.0
/
{company_id}
/
candidates
/
{candidate_id}
/
applications
/
{application_id}
/
resume
/
{resume_id}
/
{file_version}
curl --request GET \
  --url https://api.hirehive.com/v1.0/{company_id}/candidates/{candidate_id}/applications/{application_id}/resume/{resume_id}/{file_version} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "name": "<string>",
    "original_name": "<string>",
    "content_type": "<string>",
    "file_extension": "<string>",
    "id": "<string>",
    "type": "inbound_email_attachment",
    "download_link": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

company_id
string
required
candidate_id
string
required
application_id
string
required
resume_id
string
required
file_version
enum<string>
required
Available options:
original,
pdf

Response

200
application/json

The response is of type object.