with Adobe Photoshop Lightroom and TransForm?
Emit new event when a response for a form is submitted
Submit a form via JSON. See the docs. For a better user experience use the Alpha TransForm Mobile App
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
adobe_photoshop_lightroom: {
type: "app",
app: "adobe_photoshop_lightroom",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://lr.adobe.io/v2/account`,
headers: {
Authorization: `Bearer ${this.adobe_photoshop_lightroom.$auth.oauth_access_token}`,
"x-api-key": `${this.adobe_photoshop_lightroom.$auth.oauth_client_id}`,
"accept": `application/json`,
},
})
},
})
The TransForm API allows you to automate server management tasks like creating, updating, and managing servers across multiple cloud platforms. It can be a game-changer for DevOps teams, system administrators, and developers who manage cloud infrastructure. By interfacing with TransForm via Pipedream, you can craft workflows that streamline server provisioning, configuration, and monitoring processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
transform: {
type: "app",
app: "transform",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://transform.alphasoftware.com/transformAPIVersion1.a5svc/getUsersInTransformAccount`,
headers: {
"apikey": `${this.transform.$auth.api_key}`,
},
})
},
})