Superdocu helps companies collect documents from their contacts: clients, employees or partners.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The Superdocu API empowers users to automate document collection and management processes, streamlining the way businesses handle paperwork for clients and employees. It facilitates the creation of document requests, tracking of submissions, and management of user data, all programmatically. Leveraging the Superdocu API on Pipedream allows users to build powerful, serverless workflows that can interact with a broad array of other applications, improving efficiency, reducing manual labor, and ensuring critical documents are collected and processed on time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
superdocu: {
type: "app",
app: "superdocu",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.superdocu.com/api/v1/contacts`,
headers: {
Authorization: `Bearer ${this.superdocu.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
Develop, run and deploy your Python code in Pipedream workflows. Integrate seamlessly between no-code steps, with connected accounts, or integrate Data Stores and manipulate files within a workflow.
This includes installing PyPI packages, within your code without having to manage a requirements.txt
file or running pip
.
Below is an example of using Python to access data from the trigger of the workflow, and sharing it with subsequent workflow steps:
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}}