Platform for creating no code solutions and automate workflows. This app allows you to connect your own client ID / secret
Add or update a single record in your Pipedream Data Store.
Add or update multiple records to your Pipedream Data Store.
Append to a record in your data store Pipedream Data Store. If the record does not exist, a new record will be created in an array format.
Check if a key exists in your Pipedream Data Store or create one if it doesn't exist.
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}`,
},
})
},
})
With the Data Stores API, you can build applications that:
export default defineComponent({
props: {
myDataStore: {
type: "data_store",
},
},
async run({ steps, $ }) {
await this.myDataStore.set("key_here","Any serializable JSON as the value")
return await this.myDataStore.get("key_here")
},
})