Recruspace
  1. Endpoints
Recruspace
  • Welcome
  • Get API Key
  • Authentication
  • Rate Limit
  • Pagination
  • Endpoints
    • Get Candidate
      GET
    • Create Candidate
      POST
    • Add Note to Candidate
      POST
    • Add Tag to Candidate
      POST
    • Add Candidate to Job Post or Talent Pool
      POST
    • Search Candidate by Email
      GET
    • List Company Offices
      GET
    • List Company Users
      GET
    • List Job Posts
      GET
    • Get Job Post
      GET
    • Apply to Job Post
      POST
    • List Job Post Questions
      GET
    • List Talent Pools
      GET
    • Update Talent Pool
      PATCH
    • Delete Talent Pool
      DELETE
    • List Talent Pool Candidates
      GET
    • Create Talent Pool
      POST
    • Upload File
      POST
  1. Endpoints

Add Tag to Candidate

POST
/api/v1/client/candidates/add-tag/
Last modified:2025-12-30 13:07:46
Adds a tag to an existing candidate via integration (n8n, Zapier, Make, etc.).
Arguments
candidate_id (integer, as body parameter, required) : The unique identifier of the candidate.
Example: 123
title (string, as body parameter, required) : The tag title to add.
Example: "Top Candidate"
Returns
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.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params application/jsonRequired

Examples

Responses

🟢201
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
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"
}'
Response Response Example
{
    "id": 0,
    "title": "string"
}
Modified at 2025-12-30 13:07:46
Previous
Add Note to Candidate
Next
Add Candidate to Job Post or Talent Pool
Built with