We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b90d7d4 commit a7c26a0Copy full SHA for a7c26a0
components/signaturit/package.json
@@ -14,6 +14,7 @@
14
},
15
"dependencies": {
16
"@pipedream/platform": "^3.0.3",
17
+ "form-data": "^4.0.1",
18
"fs": "^0.0.1-security"
19
}
20
components/signaturit/signaturit.app.mjs
@@ -124,10 +124,13 @@ export default {
124
...opts,
125
});
126
127
- sendReminder({ signatureRequestId }) {
+ sendReminder({
128
+ signatureRequestId, ...opts
129
+ }) {
130
return this._makeRequest({
131
method: "POST",
132
path: `/signatures/${signatureRequestId}/reminder.json`,
133
+ ...opts,
134
135
136
listSignatureRequests(opts = {}) {
0 commit comments