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!"
}

Documentation Index

Fetch the complete documentation index at: https://docs.linkedcamp.com/llms.txt

Use this file to discover all available pages before exploring further.

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!"
}