Skip to content

Update Document Metadata

ssm_update_document_metadata R Documentation

Description

Updates information related to approval reviews for a specific version of a change template in Change Manager.

Usage

ssm_update_document_metadata(Name, DocumentVersion, DocumentReviews)

Arguments

Name

[required] The name of the change template for which a version's metadata is to be updated.

DocumentVersion

The version of a change template in which to update approval metadata.

DocumentReviews

[required] The change template review details to update.

Value

An empty list.

Request syntax

svc$update_document_metadata(
  Name = "string",
  DocumentVersion = "string",
  DocumentReviews = list(
    Action = "SendForReview"|"UpdateReview"|"Approve"|"Reject",
    Comment = list(
      list(
        Type = "Comment",
        Content = "string"
      )
    )
  )
)