Platform for creating no code solutions and automate workflows. This app allows you to connect your own client ID / secret
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
Updates a record if recordId
is provided or adds a record to a table.
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}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})