with Azure Storage and Airfocus?
Emit new event when a blob is deleted from a specified container in Azure Storage. See the documentation
Emit new event when a new blob is created to a specified container in Azure Storage. See the documentation
Emit new event when a new item is created or an existing one is updated.
Emit new event when a new container is created in the specified Azure Storage account. See the documentation
Creates a new container under the specified account. If a container with the same name already exists, the operation fails. See the documentation
Deletes a specific blob from a container in Azure Storage. See the documentation
Uploads a new blob to a specified container in Azure Storage. See the documentation
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
azure_storage: {
type: "app",
app: "azure_storage",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://graph.microsoft.com/v1.0/me`,
headers: {
Authorization: `Bearer ${this.azure_storage.$auth.oauth_access_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airfocus: {
type: "app",
app: "airfocus",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://app.airfocus.com/api/fields/types`,
headers: {
Authorization: `Bearer ${this.airfocus.$auth.api_key}`,
"user-agent": `pipedream/1`,
},
})
},
})