Tags
Get Specific Tag
This endpoint gets a specific tag from your Knowledge Base.
curl --location --request GET 'https://www.pacekb.com/api/v2/tags/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
"success": true,
"data": {
"id": "<id>",
"name": "Getting Started",
"slug": "getting-started",
"description": "Getting started with PaceKB is easy!",
"long_description": "<p>It's simple to get started with PaceKB</p>",
"language": null,
"language_parent": null
},
"newVersion": true
}
Response
Indicates whether the call was successful.
If there’s an error an accompanying error message will be visible
Tag data
The unique ID of the tag
The name of the tag
The slug of the tag
The short description of the tag
The long description of the tag
The language code of the tag (null = English)
ID of the English version of tag (null = English copy)
Returns true if this is a copy into a new language that does not exist
curl --location --request GET 'https://www.pacekb.com/api/v2/tags/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
"success": true,
"data": {
"id": "<id>",
"name": "Getting Started",
"slug": "getting-started",
"description": "Getting started with PaceKB is easy!",
"long_description": "<p>It's simple to get started with PaceKB</p>",
"language": null,
"language_parent": null
},
"newVersion": true
}
curl --location --request GET 'https://www.pacekb.com/api/v2/tags/[id]' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer <api_key>' \
{
"success": true,
"data": {
"id": "<id>",
"name": "Getting Started",
"slug": "getting-started",
"description": "Getting started with PaceKB is easy!",
"long_description": "<p>It's simple to get started with PaceKB</p>",
"language": null,
"language_parent": null
},
"newVersion": true
}