Watchers and CC Recipients
How to Add Watchers to Documents Without Assigning Them a Signing Role
Last updated
{
"document": {
"name": "Service Agreement",
"watchers": [
"legal@example.com",
"manager@example.com"
]
},
"signers": [
{
"email": "signer@example.com",
"action": "SIGN"
}
]
}input DocumentConfigInput {
notify_watchers: Boolean = false
}{
"document": {
"name": "Service Agreement",
"watchers": [
"legal@example.com"
],
"configs": {
"notify_watchers": true
}
}
}mutation UpdateDocument(
$documentId: UUID!
$document: UpdateDocumentInput!
) {
updateDocument(
id: $documentId
document: $document
) {
id
name
watchers {
email
user_id
organization_id
group_id
folder_id
}
}
}{
"documentId": "DOCUMENT_UUID",
"document": {
"watchers": [
"legal@example.com",
"management@example.com"
],
"configs": {
"notify_watchers": true
}
}
}cc: [EmailInput]{
"document": {
"name": "Service Agreement",
"cc": [
{
"email": "legal@example.com"
},
{
"email": "manager@example.com"
}
]
}
}