Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add recipient groups api #389

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"url": "http://www.apache.org/licenses/LICENSE-2.0"
},
"version": "2.0.0",
"x-box-commit-hash": "f871f1e4d1"
"x-box-commit-hash": "d81cf2f982"
},
"servers": [
{
Expand Down Expand Up @@ -33098,6 +33098,12 @@
"description": "Order of the signer",
"minimum": 0,
"example": 2
},
"signer_group_id": {
"type": "string",
"description": "If set, signers who have the same group ID will be assigned to the same input.\nA signer group is expected to have more than one signer. When a group contains fewer than two signers, \nit will be converted to a single signer and the group will be removed. ",
"example": "cd4ff89-8fc1-42cf-8b29-1890dedd26d7",
"nullable": true
}
}
}
Expand Down Expand Up @@ -37425,6 +37431,12 @@
"description": "If set, the signer is required to enter the password before they are able\nto sign a document. This field is write only.",
"example": "SecretPassword123",
"nullable": true
},
"signer_group_id": {
"type": "string",
"description": "If set, signers who have the same group ID will be assigned to the same input.\nA signer group is expected to have more than one signer. When a group contains fewer than two signers, \nit will be converted to a single signer and the group will be removed. ",
"example": "cd4ff89-8fc1-42cf-8b29-1890dedd26d7",
"nullable": true
}
}
},
Expand Down
Loading