Better Proposals

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.

Integrate the Better Proposals API with the Formatting API

Setup the Better Proposals API trigger to run a workflow which integrates with the Formatting API. Pipedream's integration platform allows you to integrate Better Proposals and Formatting remarkably fast. Free for developers.

[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
[Date/Time] Add/Subtract Time with the Formatting API

Add or subtract time from a given input

 
Try it
[Date/Time] Compare Dates with the Formatting API

Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.

 
Try it
[Date/Time] Format with the Formatting API

Format a date string to another date string

 
Try it

Overview of Better Proposals

With 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:

  • A proposal generation tool for your sales team
  • An estimate calculator for your customers
  • A document management system for your proposal process
  • An integration with your CRM to automatically generate proposals
  • A workflow tool to help you manage your proposal process

Connect Better Proposals

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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}`,
      },
    })
  },
})

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})