Electronic signature that scales with your workflow. Create and scale eSignature workflows with signNow, part of the airSlate Business Cloud. Sign and send documents for signing, generate agreements, negotiate contracts, accept payments, and automate business processes.
Go to siteimport { axios } from "@pipedream/platform"
export default defineComponent({
props: {
signnow: {
type: "app",
app: "signnow",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.signnow.com/user`,
headers: {
Authorization: `Bearer ${this.signnow.$auth.oauth_access_token}`,
},
})
},
})
Emit new event when all signers have filled in and signed the document. See the documentation
Emit new event when a document has been updated. See the documentation
Creates a new document copy out of a template. See the documentation
Adds values to fields that the signers can later edit when they receive the document for signature. See the documentation
Creates and sends a field invite to sign a document. See the documentation
Uploads a file that contains SignNow text tags. See the documentation
signNow uses OAuth authentication. When you connect your signNow account, Pipedream will open a popup window where you can sign into signNow and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any signNow API.
Pipedream requests the following authorization scopes when you connect your account:
GET
https://app.signnow.com/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
response_type=code
POST
https://api.signnow.com/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://api.signnow.com/oauth2/token
content-type: application/x-www-form-urlencoded
accept: application/json
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}