Transform your business with our intelligent CRM solutions. Drive sales, track leads, automate tasks, enhance service, boost efficiency - all in line place.
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
import axios from "axios";
import FormData from "form-data";
export default defineComponent({
props: {
page_x: {
type: "app",
app: "page_x",
}
},
async run({steps, $}) {
const data = new FormData();
data.append("customer_id", "540001");
data.append("name", "John Smith");
data.append("email", "john.smith@fabrikam");
data.append("api_key", this.page_x.$auth.api_key);
const { data: results } = await axios({
method: "POST",
url: "https://pagexcrm.p.rapidapi.com/api/lead",
headers: {
"Content-Type": `multipart/form-data; boundary=${data._boundary}`,
"x-rapidapi-host": `pagexcrm.p.rapidapi.com`,
"x-rapidapi-key": `${this.page_x.$auth.rapidapi_key}`,
},
data
});
return results
},
})
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}}