You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: components/signaturit/actions/create-signature-request-from-template/create-signature-request-from-template.mjs
description: "Creates a signature request using a pre-existing template. [See the documentation]()",
8
-
version: "0.0.{{ts}}",
17
+
description: "Creates a signature request using a pre-existing template. [See the documentation](https://docs.signaturit.com/api/latest#signatures_create_signature)",
18
+
version: "0.0.1",
9
19
type: "action",
10
20
props: {
11
21
signaturit,
12
-
files: {
13
-
propDefinition: [
14
-
signaturit,
15
-
"files",
16
-
],
17
-
},
18
-
name: {
19
-
propDefinition: [
20
-
signaturit,
21
-
"name",
22
-
],
23
-
},
24
-
recipients: {
25
-
propDefinition: [
26
-
signaturit,
27
-
"recipients",
28
-
],
29
-
},
30
22
body: {
31
23
propDefinition: [
32
24
signaturit,
33
25
"body",
34
26
],
27
+
description: "Email body (html code is allowed) for **email** and **sms** type requests. Note: For **sms** request types it will be truncated to 120 characters Note: For **sms** the body should contain the tag **{{url}}** where we will include the document url.",
35
28
optional: true,
36
29
},
37
30
brandingId: {
@@ -42,10 +35,9 @@ export default {
42
35
optional: true,
43
36
},
44
37
callbackUrl: {
45
-
propDefinition: [
46
-
signaturit,
47
-
"callbackUrl",
48
-
],
38
+
type: "string",
39
+
label: "Callback URL",
40
+
description: "Url to redirect the user when finish the signature process.",
49
41
optional: true,
50
42
},
51
43
data: {
@@ -56,17 +48,18 @@ export default {
56
48
optional: true,
57
49
},
58
50
deliveryType: {
59
-
propDefinition: [
60
-
signaturit,
61
-
"deliveryType",
62
-
],
51
+
type: "string",
52
+
label: "Delivery Type",
53
+
description: "Delivery type for signature request.",
54
+
options: DELIVERY_TYPE_OPTIONS,
63
55
optional: true,
64
56
},
65
57
expireTime: {
66
-
propDefinition: [
67
-
signaturit,
68
-
"expireTime",
69
-
],
58
+
type: "integer",
59
+
label: "Expiration Time (days)",
60
+
description: "Expiration time of the document in days (max 365).",
61
+
min: 1,
62
+
max: 365,
70
63
optional: true,
71
64
},
72
65
eventsUrl: {
@@ -76,25 +69,49 @@ export default {
76
69
],
77
70
optional: true,
78
71
},
79
-
replyTo: {
72
+
files: {
80
73
propDefinition: [
81
74
signaturit,
82
-
"replyTo",
75
+
"attachments",
83
76
],
77
+
label: "Files",
84
78
optional: true,
85
79
},
86
-
reminders: {
80
+
name: {
81
+
type: "string",
82
+
label: "Name",
83
+
description: "Name assigned to the signature request.",
84
+
},
85
+
recipients: {
87
86
propDefinition: [
88
87
signaturit,
89
-
"reminders",
88
+
"recipients",
90
89
],
90
+
description: "List of recipients in JSON format, e.g., '{\"name\": \"John Doe\", \"email\": \"[email protected]\", \"phone\": \"34555667788\"}'. [See the documentation](https://docs.signaturit.com/api/latest#signatures_create_signature) for further information.",
91
+
},
92
+
cc: {
93
+
type: "string[]",
94
+
label: "CC",
95
+
description: "List with email recipients containing name and email for people that will receive a copy of the signed document when the process is completed. e.g., '{\"name\": \"John Doe\", \"email\": \"[email protected]\"}'.",
96
+
optional: true,
97
+
},
98
+
replyTo: {
99
+
type: "string",
100
+
label: "Reply To",
101
+
description: "Email Reply-To address.",
102
+
optional: true,
103
+
},
104
+
reminders: {
105
+
type: "string[]",
106
+
label: "Reminders (days)",
107
+
description: "Reminders in days to send automatic reminders. You can set it 0 to disable reminders. E.g. [1,3,4]",
91
108
optional: true,
92
109
},
93
110
signingMode: {
94
-
propDefinition: [
95
-
signaturit,
96
-
"signingMode",
97
-
],
111
+
type: "string",
112
+
label: "Signing Mode",
113
+
description: "The signing mode lets you control the order in which your recipients receive and sign your documents.",
0 commit comments