Create the app your business needs — without coding, overpaying, or waiting.
The Glide API allows you to create feature-rich, mobile-friendly apps directly from data sources like Google Sheets or Excel. On Pipedream, you can harness this seamless bridge between your data and the app interface to automate tasks, sync data in real time, and dynamically control your Glide apps. Combine Glide with other apps on Pipedream to enhance functionality, like triggering notifications, processing payments, or managing user data.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
glide: {
type: "app",
app: "glide",
}
},
async run({steps, $}) {
const data = {
"appID": `{{your_app_id}}`,
"queries": `[
{
"tableName": "{{your_table_name}}"
}
]`,
}
return await axios($, {
method: "POST",
url: `https://api.glideapp.io/api/function/queryTables`,
headers: {
Authorization: `Bearer ${this.glide.$auth.secret_token}`,
"Content-Type": `application/json`,
},
data,
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.