Get Candidate CV Download URL
curl --request GET \
--url https://api.example.com/api/v1/cv/download-url/:jobSeekerIdimport requests
url = "https://api.example.com/api/v1/cv/download-url/:jobSeekerId"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/cv/download-url/:jobSeekerId', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/cv/download-url/:jobSeekerId",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/cv/download-url/:jobSeekerId"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/cv/download-url/:jobSeekerId")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/cv/download-url/:jobSeekerId")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyCV
Get Candidate CV Download URL
Get the CV download URL for a job seeker candidate
GET
/
api
/
v1
/
cv
/
download-url
/
:jobSeekerId
Get Candidate CV Download URL
curl --request GET \
--url https://api.example.com/api/v1/cv/download-url/:jobSeekerIdimport requests
url = "https://api.example.com/api/v1/cv/download-url/:jobSeekerId"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.example.com/api/v1/cv/download-url/:jobSeekerId', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.example.com/api/v1/cv/download-url/:jobSeekerId",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.example.com/api/v1/cv/download-url/:jobSeekerId"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.example.com/api/v1/cv/download-url/:jobSeekerId")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/cv/download-url/:jobSeekerId")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_bodyEndpoint
GET /api/v1/cv/download-url/:jobSeekerId
http://localhost:3000/api/v1
This endpoint requires authentication and Company role.
Authentication
Include the access token in the Authorization header:Authorization: Bearer YOUR_ACCESS_TOKEN
Description
Get a time-limited download URL for a job seeker’s CV. The URL expires after 1 hour.Parameters
string
required
The job seeker ID (UUID)
Response
Success Response (200 OK)
{
"success": true,
"data": {
"downloadUrl": "https://careerk-cv-storage.example.com/cvs/..."
},
"message": "CV download URL retrieved successfully",
"meta": {
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/download-url/:jobSeekerId",
"method": "GET"
}
}
Error Responses
401 Unauthorized
{
"success": false,
"error": {
"message": "Unauthorized",
"statusCode": 401,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/download-url/:jobSeekerId",
"method": "GET",
"details": "Unauthorized"
}
}
403 Forbidden
{
"success": false,
"error": {
"message": "Forbidden resource",
"statusCode": 403,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/download-url/:jobSeekerId",
"method": "GET",
"details": "Forbidden"
}
}
404 Not Found
Returned when the job seeker has no CV uploaded:{
"success": false,
"error": {
"message": "CV not found for this candidate",
"statusCode": 404,
"timestamp": "2026-04-23T20:00:00.000Z",
"path": "/cv/download-url/:jobSeekerId",
"method": "GET",
"details": "Not Found"
}
}
URL Expiration: The download URL is valid for 1 hour. After expiration, request a new URL.
