Tags
Create Tag
This endpoint creates a new tag.
Copy
curl --location --request PUT 'https://www.pacekb.com/api/v2/tags' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
--data-raw '{
"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>"
}'
Copy
{
"success": true,
"message": "Getting Started has been created"
}
Body
Name of tag
Slug of tag
Description of tag
HTML-supported description of tag
Response
Indicates whether the call was successful.
Success/error message
Copy
curl --location --request PUT 'https://www.pacekb.com/api/v2/tags' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
--data-raw '{
"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>"
}'
Copy
{
"success": true,
"message": "Getting Started has been created"
}
Copy
curl --location --request PUT 'https://www.pacekb.com/api/v2/tags' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
--data-raw '{
"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>"
}'
Copy
{
"success": true,
"message": "Getting Started has been created"
}
Assistant
Responses are generated using AI and may contain mistakes.