Trigger workflows on an interval or cron schedule.
Creates an export for a gigasheet dataset. See the documentation
Uploads data from a URL to Gigasheet. See the documentation
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.
The Gigasheet API enables users to manipulate large-scale data sheets within the cloud effortlessly. Through Pipedream, you can leverage this functionality to automate data analysis, manipulation, and enrichment workflows. By connecting Gigasheet with other apps, you can streamline processes like data import, transformation, and sharing, making Pipedream an ideal platform to enhance productivity and data handling efficiency.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gigasheet: {
type: "app",
app: "gigasheet",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gigasheet.com/user/whoami`,
headers: {
"X-GIGASHEET-TOKEN": `${this.gigasheet.$auth.api_key}`,
"accept": `application/json`,
},
})
},
})