with Azure Storage and RenderForm?
Emit new event when a blob is deleted from a specified container in Azure Storage. See the documentation
Emit new event when a new render result is ready in RenderForm.
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 container is created in the specified Azure Storage account. See the documentation
Generates an image using a supplied template. 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
Retrieve a list of your personal templates, optionally filtered by name. See the documentation
Deletes a specific blob from a container in Azure Storage. See the documentation
Capture an image of the current screen. 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}`,
},
})
},
})
The RenderForm API empowers you to automate the conversion of HTML forms into static, embeddable forms. By integrating RenderForm with Pipedream, you can streamline the process of capturing responses and integrating them into your data pipeline. With Pipedream's serverless platform, you can create workflows that trigger on form submissions, pre-fill forms with data from external sources, and connect form data to other apps and services, such as CRMs, email marketing tools, or databases.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
renderform: {
type: "app",
app: "renderform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://get.renderform.io/api/v2/my-templates`,
headers: {
"X-API-KEY": `${this.renderform.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})