candidate_id (integer, as body parameter, required) : The unique identifier of the candidate.123title (string, as body parameter, required) : The tag title to add."Top Candidate"201 Created : A JSON object representing the created tag, including its ID and title.404 Not Found : If the candidate does not exist or does not belong to the authenticated company.409 Conflict : If the tag already exists for this candidate.curl --location --request POST 'https://api.recruspace.com/api/v1/client/candidates/add-tag/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"candidate_id": 0,
"title": "string"
}'{
"id": 0,
"title": "string"
}