curl --location --request POST 'https://www.pacekb.com/api/v2/tags/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
--data-raw '{
    "id": "<id>",
    "name": "Getting Started",
    "slug": "getting-started",
    "description": "How to get started with your PaceKB Knowledge Base",
    "longDescription": "<h1>Getting started is easy with PaceKB. Here is how you can do it:</h1>",
    "lang": "fr"
}'
{
  "success": true,
  "message": "Tag has been updated successfully"
}
id
string
ID of the tag to edit

Body

id
string
required
ID of tag
name
string
required
Name of tag
slug
string
required
Slug of tag
description
string
Description of tag
longDescription
string
HTML-supported description of tag
lang
string
required
Language code if not an english tag

Response

success
boolean
Indicates whether the call was successful.
message
string
Success/error message
curl --location --request POST 'https://www.pacekb.com/api/v2/tags/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
--data-raw '{
    "id": "<id>",
    "name": "Getting Started",
    "slug": "getting-started",
    "description": "How to get started with your PaceKB Knowledge Base",
    "longDescription": "<h1>Getting started is easy with PaceKB. Here is how you can do it:</h1>",
    "lang": "fr"
}'
{
  "success": true,
  "message": "Tag has been updated successfully"
}