Trigger workflows on new emails, and send emails to yourself as part of a Pipedream workflow.
Get a unique address where you can send emails to trigger your workflow.
Creates an export for a gigasheet dataset. See the documentation
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
Uploads data from a URL to Gigasheet. See the documentation
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});
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`,
},
})
},
})