Platform for creating no code solutions and automate workflows. This app allows you to connect your own client ID / secret
Write Python and use any of the 350k+ PyPi packages available. Refer to the Pipedream Python docs to learn more.
Podio's Custom App API allows you to build custom tools and applications to meet your specific needs. It provides a comprehensive suite of features and functions to help you customize and automate your workflows across teams, departments, locations, and ecosystems. With the API, you can do the following and more:
Here are a few examples of what you can build using Podio's Custom App API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
podio_custom_app: {
type: "app",
app: "podio_custom_app",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.podio.com/user`,
headers: {
Authorization: `Bearer ${this.podio_custom_app.$auth.oauth_access_token}`,
},
})
},
})
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}}