Save time and win more work with smart sales documents. Great for proposals, quotes and more!
Go to siteThe Qwilr API offers a programmable way to generate and manage proposals, quotes, and web-based documents. Using Pipedream, you can automate document lifecycle events, streamline proposal approvals, and synchronize Qwilr data with CRM platforms or other databases. Leverage the power of serverless workflows to react to new document events, update records in real-time, and create notifications or follow-ups that enhance collaboration and efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
qwilr: {
type: "app",
app: "qwilr",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.qwilr.com/v1/blocks/saved`,
headers: {
Authorization: `Bearer ${this.qwilr.$auth.access_token}`,
},
})
},
})
Automated Proposal Follow-Up: When a Qwilr document is viewed by a client, trigger a workflow that logs this event in a CRM like Salesforce, and automatically sends a follow-up email to the client using a service like SendGrid, asking if they have any questions or require further assistance.
New Document Alert & Assignment: On creation of a new Qwilr document, trigger a Pipedream workflow that posts a notification in a Slack channel and assigns a team member to review the document. Use Slack's API to mention the assigned team member directly, ensuring the immediate attention and handling of the new document.
Document Analytics to Dashboard: Capture Qwilr document interaction analytics, such as views and time spent on the document, and push this data to a business intelligence tool like Google Sheets or a data visualization app like Tableau. Use this data to refine sales strategies and monitor engagement trends.
Qwilr uses API keys for authentication. When you connect your Qwilr account, Pipedream securely stores the keys so you can easily authenticate to Qwilr APIs in both code and no-code steps.
To retrieve your Access Token,