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

Create new tag

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

Create/Update references for tags

Next
Built with

Authentication

AuthorizationBasic

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

Request

request body
dataobjectOptional

Response

New tag data
_idstring
descriptionstring
namestring

Errors

500
Internal Server Error