with Azure Storage and Motion?
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 container is created in the specified Azure Storage account. See the documentation
Emit new event when the status of a specific task is updated.
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
Move a specific task to another workspace. When moving tasks from one workspace to another, the tasks project, status, and label(s) and assignee will all be reset. 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 Motion API empowers users to streamline project management and productivity tasks. Within Pipedream's environment, you can leverage this API to automate actions based on project updates, task completions, and team collaborations. It's a toolset that sails smoothly with Pipedream's knack for creating swift integrations and workflows, making it possible to connect Motion with other apps to optimize project tracking, notifications, and data synchronization.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
motion: {
type: "app",
app: "motion",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.usemotion.com/v1
/users/me`,
params: {
"X-API-Key": `${this.motion.$auth.api_key}`,
},
})
},
})