Skip to main content
POST
/
tags
curl -X POST https://api.linkedcamp.com/tags \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Hot Lead",
    "color": "#FF5733"
  }'
{
  "success": true,
  "message": "Tag added successfully!"
}

Headers

token
string
required
Your LinkedCamp API token.

Body Parameters

name
string
required
The tag name.
color
string
required
The tag color (hex color code).

Response

success
boolean
Whether the request was successful.
message
string
A human-readable result message.
curl -X POST https://api.linkedcamp.com/tags \
  -H "token: YOUR_API_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Hot Lead",
    "color": "#FF5733"
  }'
{
  "success": true,
  "message": "Tag added successfully!"
}