Skip to main content
POST https://cms.thepublive.com/publisher/{publisher_id}/tag/ Creates a new tag.

Headers

NameTypeRequiredDescription
usernamestringYesAPI Key
passwordstringYesAPI Secret
Content-TypestringYesapplication/json

Request Body

FieldTypeRequiredDescription
name*stringYesTag name
english_name*stringYesEnglish name
meta_titlestringNoSEO title
meta_descriptionstringNoSEO description
contentstringNoTag description (HTML)

Example Request

curl -X POST \
  'https://cms.thepublive.com/publisher/123/tag/' \
  -H 'username: YOUR_API_KEY' \
  -H 'password: YOUR_API_SECRET' \
  -H 'Content-Type: application/json' \
  -d '{"name": "AI Technology", "english_name": "AI Technology"}'
{
  "status": "success",
  "message": "Created Successfully",
  "data": {
    "id": 112200,
    "name": "AI Technology",
    "english_name": "AI Technology",
    "slug": "ai-technology",
    "absolute_url": "/tag/ai-technology",
    "meta_title": "",
    "meta_description": ""
  }
}