Better Proposals helps you create your proposals faster, makes them look more professional, and gives you all the tools you need to win the job as quickly as possible.
Go to siteWith the Better Proposals API, you can easily generate PDF proposals with your own branding, automatically calculate prices and taxes based on input from your customer, fetch data from your CRM, and much more.
Here are some examples of what you can build with the Better Proposals API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
better_proposals: {
type: "app",
app: "better_proposals",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.betterproposals.io/settings/`,
headers: {
"Bptoken": `${this.better_proposals.$auth.api_key}`,
},
})
},
})
Better Proposals uses API keys for authentication. When you connect your Better Proposals account, Pipedream securely stores the keys so you can easily authenticate to Better Proposals APIs in both code and no-code steps.
Get your API key in Integrations > API in your Better Proposals account.