For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Open sourceSupportFAQsDocs Home
DocumentationAPI ReferenceRelease notes
DocumentationAPI ReferenceRelease notes
  • Introduction
    • Overview
    • Authentication
  • Guides
    • Integration API routes
    • Operations Manager search APIs
    • Search API
    • URL query parameters
    • Use query parameters in API requests
  • Reference
        • POSTClone existing tag
        • POSTCreate many new tags
        • POSTCreate new tag
        • POSTCreate/Update references for tags
        • POSTDelete existing tag
        • POSTFind tags by name
        • POSTGet tag details given an ID
        • POSTGet tag refs by content ids
        • POSTGet tags by content ID
        • GETList all tags
        • POSTReference a tag to a peice of content
        • POSTUpdating existing tag
LogoLogo
Open sourceSupportFAQsDocs Home
ReferenceTags

Get tag details given an ID

POST
http://localhost:3000/tags/get
POST
/tags/get
$curl -X POST http://localhost:3000/tags/get \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1{
2 "_id": "5c8fa48dd8e04500b1b2f28c",
3 "description": "Descriptions can be empty",
4 "name": "My Tag"
5}
Get details and results for a single tag given that tags ID.
Was this page helpful?
Previous

Get tag refs by content ids

Next
Built with

Authentication

AuthorizationBasic

Basic authentication of the form Basic <base64(username:password)>.

Request

request body
idstringOptional

Response

Tag details
_idstring
descriptionstring
namestring

Errors

500
Internal Server Error