Skip to main content

UpdateDocumentDocumentationTagsRequest

Request to add or remove documentation tags on documents across multiple documentations

items object[]required

Items to process in the same transaction, each scoped to a document and a documentation

  • Array [
  • assetIdentifierstringrequired

    Asset identifier that scopes access validation for this item

    Example: asset-789
    documentIdentifierstringrequired

    Document identifier

    Example: doc-123
    documentationIdentifierstringrequired

    Documentation identifier to which the tags belong

    Example: documentation-456
    addTagsstring[]required

    Documentation tags to add to the document. Missing tags are created before assignment

    removeTagsstring[]required

    Documentation tags to remove from the document for the targeted documentation only

  • ]
  • UpdateDocumentDocumentationTagsRequest
    {
    "items": [
    {
    "assetIdentifier": "asset-789",
    "documentIdentifier": "doc-123",
    "documentationIdentifier": "documentation-456",
    "addTags": [
    "string"
    ],
    "removeTags": [
    "string"
    ]
    }
    ]
    }