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
    • 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

Find tags by name

POST
http://localhost:3000/tags/find
POST
/tags/find
$curl -X POST http://localhost:3000/tags/find \
> -H "Content-Type: application/json" \
> -u "<username>:<password>" \
> -d '{}'
1[
2 {
3 "_id": "5c8fa48dd8e04500b1b2f28c",
4 "description": "Descriptions can be empty",
5 "name": "My Tag"
6 }
7]
Find a list of tags given a name.
Was this page helpful?
Previous

Get tag details given an ID

Next
Built with

Authentication

AuthorizationBasic

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

Request

request body
dataobjectOptional

Response

Tag details
_idstring
descriptionstring
namestring

Errors

500
Internal Server Error