Skip to content

Commit 4481ef5

Browse files
committed
Add signers field to send-signature-request for enhanced signature request customization
1 parent 4de0fe6 commit 4481ef5

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

components/lumin_pdf/actions/send-signature-request/send-signature-request.mjs

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,12 @@ export default {
3838
description: "An array of path to files in the `/tmp` directory (for example, `/tmp/myFile.pdf`) to be sent for signature. This field is mutually exclusive with `File URL`, `Files`, and `File URLs`. Only one of these fields should be provided in the request.",
3939
optional: true,
4040
},
41+
signers: {
42+
type: "string[]",
43+
label: "Signers",
44+
description: "A list of objects of signers to add to your Signature Request. Format: `[{'email_address': '[email protected]', 'name': 'John Doe', 'group': 1}, {'email_address': '[email protected]', 'name': 'Jane Doe', 'group': 2}]`. [See the documentation](https://developers.luminpdf.com/api/send-signature-request/) for more information.",
45+
optional: true,
46+
},
4147
viewers: {
4248
type: "string[]",
4349
label: "Viewers",

0 commit comments

Comments
 (0)