with Plasmic and Alteryx Analytics Cloud?
The Plasmic API enables you to tap into the powerful visual design features of Plasmic within Pipedream workflows. With it, you can automate the fetching, updating, and publishing of Plasmic projects and their components. This opens up possibilities for dynamic content management, design collaboration automation, and streamlined deployment processes. You can use the Plasmic API to integrate with various services, trigger updates across platforms, or synchronize design changes in real-time.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
plasmic: {
type: "app",
app: "plasmic",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://codegen.plasmic.app/api/v1/loader/html/preview/${this.plasmic.$auth.project_id}/{your_component_name}`,
headers: {
"x-plasmic-api-project-tokens": `${this.plasmic.$auth.project_id}:${this.plasmic.$auth.project_token}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
alteryx_analytics_cloud: {
type: "app",
app: "alteryx_analytics_cloud",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.alteryx_analytics_cloud.$auth.region}.alteryxcloud.com/v4/people/current`,
headers: {
Authorization: `Bearer ${this.alteryx_analytics_cloud.$auth.oauth_access_token}`,
},
})
},
})