Adds a new comment to the specified document version
Source:R/workdocs_operations.R
workdocs_create_comment.RdAdds a new comment to the specified document version.
See https://www.paws-r-sdk.com/docs/workdocs_create_comment/ for full documentation.
Usage
workdocs_create_comment(
AuthenticationToken = NULL,
DocumentId,
VersionId,
ParentId = NULL,
ThreadId = NULL,
Text,
Visibility = NULL,
NotifyCollaborators = NULL
)Arguments
- AuthenticationToken
Amazon WorkDocs authentication token. Not required when using Amazon Web Services administrator credentials to access the API.
- DocumentId
[required] The ID of the document.
- VersionId
[required] The ID of the document version.
- ParentId
The ID of the parent comment.
- ThreadId
The ID of the root comment in the thread.
- Text
[required] The text of the comment.
- Visibility
The visibility of the comment. Options are either PRIVATE, where the comment is visible only to the comment author and document owner and co-owners, or PUBLIC, where the comment is visible to document owners, co-owners, and contributors.
- NotifyCollaborators
Set this parameter to TRUE to send an email out to the document collaborators after the comment is created.