Flexible CRM software solutions and automation tools
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
The Flexie API offers a powerful way to leverage customer relationship management (CRM) functionality within automated workflows. With the Flexie API, you can create, retrieve, update, and delete records, such as leads, contacts, and deals. You can also automate communication with leads via email or SMS, manage tasks and appointments, and create custom workflows to streamline your sales process.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
flexie: {
type: "app",
app: "flexie",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.flexie.$auth.subdomain}.flexie.io/api/users/self`,
params: {
apikey: `${this.flexie.$auth.api_key}`,
},
})
},
})
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}}