Proposal software that both you and your clients will love. Stop fighting with Word, InDesign and PDF's. Create beautiful proposals in less time, every time with Nusii.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Nusii Proposals API provides an easy and straightforward
way to automate your proposal creation and sending needs. With this API you can
build custom applications to create, manage, and send proposals to clients
right from within your own app or website.
Using the Nusii Proposals API, you can create a variety of proposal-related
solutions to suit your business needs. Here are some of the potential uses for
this API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
nusii_proposals: {
type: "app",
app: "nusii_proposals",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.nusii.com/api/v2/proposals`,
headers: {
"Authorization": `Token token=${this.nusii_proposals.$auth.api_token}`,
"User-Agent": `@PipedreamHQ/pipedream v0.1`,
},
})
},
})
Python API on Pipedream offers developers to build or automate a variety of
tasks from their web and cloud apps. With the Python API, users are able to
create comprehensive and flexible scripts, compose and manage environment
variables, and configure resources to perform a range of functions.
By using Pipedream, you can easily:
def handler(pd: "pipedream"):
# Reference data from previous steps
print(pd.steps["trigger"]["context"]["id"])
# Return data for use in future steps
return {"foo": {"test":True}}