with GorillaStack and InfoLobby?
The GorillaStack API enables automation and integration of cloud cost management and optimization tools. With GorillaStack, you can automate real-time actions, get insights into your cloud usage, and set up rules to control cloud costs. Using this API within Pipedream, you can create powerful serverless workflows that respond to various triggers and perform actions like shutting down unused resources, notifying teams about cost spikes, or adjusting resources based on load.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
gorillastack: {
type: "app",
app: "gorillastack",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gorillastack.com/v2/teams/${this.gorillastack.$auth.team_id}/users`,
headers: {
Authorization: `Bearer ${this.gorillastack.$auth.api_key}`,
"Accept": `application/json`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
infolobby: {
type: "app",
app: "infolobby",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://infolobby.com/api/users/me`,
headers: {
Authorization: `Bearer ${this.infolobby.$auth.oauth_access_token}`,
},
})
},
})