What do you want to automate

with Storeganise and Google Cloud?

Prompt, edit and deploy AI agents that connect to Storeganise, Google Cloud and 2,500+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Add Invoice Payment with Storeganise API on New Pub/Sub Messages from Google Cloud API
Google Cloud + Storeganise
 
Try it
Mark Invoice as Paid with Storeganise API on New Pub/Sub Messages from Google Cloud API
Google Cloud + Storeganise
 
Try it
Add Invoice Payment with Storeganise API on BigQuery - New Row from Google Cloud API
Google Cloud + Storeganise
 
Try it
Add Invoice Payment with Storeganise API on BigQuery - Query Results from Google Cloud API
Google Cloud + Storeganise
 
Try it
Bigquery Insert Rows with Google Cloud API on New Invoice Created from Storeganise API
Storeganise + Google Cloud
 
Try it
New Pub/Sub Messages from the Google Cloud API

Emit new Pub/Sub topic in your GCP account. Messages published to this topic are emitted from the Pipedream source.

 
Try it
BigQuery - New Row from the Google Cloud API

Emit new events when a new row is added to a table

 
Try it
New Invoice Created from the Storeganise API

Emit new event when a new invoice is created in Storeganise.

 
Try it
BigQuery - Query Results from the Google Cloud API

Emit new events with the results of an arbitrary query

 
Try it
New Unit Rental Created from the Storeganise API

Emit new event when a unit rental is created in Storeganise

 
Try it
Add Invoice Payment with the Storeganise API

Adds a payment to the targeted invoice. See the documentation

 
Try it
Mark Invoice as Paid with the Storeganise API

Marks the selected invoice as paid in Storeganise. See the documentation

 
Try it
Bigquery Insert Rows with the Google Cloud API

Inserts rows into a BigQuery table. See the docs and for an example here

 
Try it
Create Bucket with the Google Cloud API

Creates a bucket on Google Cloud Storage See the docs

 
Try it
Create Scheduled Query with the Google Cloud API

Creates a scheduled query in Google Cloud. See the documentation

 
Try it
Integrate the Storeganise API with the Google Cloud API
Setup the Storeganise API trigger to run a workflow which integrates with the Google Cloud API. Pipedream's integration platform allows you to integrate Storeganise and Google Cloud remarkably fast. Free for developers.

Connect Storeganise

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    storeganise: {
      type: "app",
      app: "storeganise",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.storeganise.$auth.subdomain}.storeganise.com/api/v1/sites`,
      headers: {
        "Authorization": `ApiKey ${this.storeganise.$auth.api_key}`,
      },
    })
  },
})

Overview of Google Cloud

The Google Cloud API opens a world of possibilities for enhancing cloud operations and automating tasks. It empowers you to manage, scale, and fine-tune various services within the Google Cloud Platform (GCP) programmatically. With Pipedream, you can harness this power to create intricate workflows, trigger cloud functions based on events from other apps, manage resources, and analyze data, all in a serverless environment. The ability to interconnect GCP services with numerous other apps enriches automation, making it easier to synchronize data, streamline development workflows, and deploy applications efficiently.

Connect Google Cloud

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
module.exports = defineComponent({
  props: {
    google_cloud: {
      type: "app",
      app: "google_cloud",
    }
  },
  async run({steps, $}) {
    // Required workaround to get the @google-cloud/storage package
    // working correctly on Pipedream
    require("@dylburger/umask")()
    
    const { Storage } = require('@google-cloud/storage')
    
    const key = JSON.parse(this.google_cloud.$auth.key_json)
     
    const storage = new Storage({
      projectId: key.project_id,
      credentials: {
        client_email: key.client_email,
        private_key: key.private_key,
      }
    })
    
    await storage.authClient.getCredentials()
    return {
      status: "success",
      authenticated: true,
      projectId: key.project_id,
      serviceAccount: key.client_email
    }
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo