Work smarter with automation solutions #airSlate, #signNow, #pdfFiller, #USLegalForms, and #DocHub.
Go to siteThe Airslate API enables automation of document workflows, including creation, updating, and tracking of e-signature processes. In Pipedream, you can leverage this API to streamline document handling, automate data syncing between apps, and manage notifications related to your digital documents. Utilizing Airslate's capabilities within Pipedream workflows allows for easy integration with other services, enhancing productivity and minimizing manual tasks.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airslate: {
type: "app",
app: "airslate",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airslate.io/v1/organizations`,
headers: {
Authorization: `Bearer ${this.airslate.$auth.oauth_access_token}`,
"accept": `application/json`,
},
})
},
})
Automated Document Creation and Distribution: Trigger a workflow in Pipedream when a new entry is added to a CRM like Salesforce. Use the Airslate API to create and send a customized contract, ensuring all new clients receive their agreements without delay.
E-Signature Status Tracking to CRM: When a document's status changes in Airslate, such as when a signature is completed, you can set up a Pipedream workflow to update the corresponding record in a CRM app like HubSpot, keeping sales teams informed in real-time.
Real-Time Notifications for Document Actions: Use Airslate API to monitor document activities, and with Pipedream's help, send notifications through communication platforms like Slack or email whenever critical updates (e.g., document viewed, signed, or commented) occur, keeping all stakeholders in the loop.
Create a new reusable document package that contains fillable documents and forms in the specified organization. See the documentation
Creates a new organization in airslate with optional settings. See the documentation
Airslate uses OAuth authentication. When you connect your Airslate account, Pipedream will open a popup window where you can sign into Airslate and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Airslate API.
Pipedream requests the following authorization scopes when you connect your account:
email
GET
https://oauth.airslate.com/public/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://oauth.airslate.com/public/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}
POST
https://oauth.airslate.com/public/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}