Skip to main content
Version: Latest

DocumentShareInfoInput

description

DocumentShareInfoInput is the mutation input that provide information regarding document sharees and document metadata

input DocumentShareInfoInput {
documentId: String!
sharees: [String!]
notifyByEmail: Boolean!
}

Fields

DocumentShareInfoInput.documentId ● String! non-null scalar

Id of the document the user is updating the sharing status for

DocumentShareInfoInput.sharees ● [String!] list scalar

List of sharees that will be used to update the document sharing status. Each item must follow this format: prefix:value. Where prefix is either user, group, email or preset. Value contains, for the users and groups, the shareeId; for email, the email address; and for preset either default or everyone.

DocumentShareInfoInput.notifyByEmail ● Boolean! non-null scalar

Indicate if an email notification will be sent to sharees.

Member of

updateDocumentSharingStatus mutation