with Cloudpress and Adobe Photoshop Lightroom?
Exports all content in a collection in Cloudpress. See the documentation
Exports content from a connection in Cloudpress. See the documentation
The Cloudpress API lets you convert rich text content into various formats. With Pipedream, you can use this API to automate the process of converting and distributing content across different platforms. Think of it as your bridge between content creation and content publication, streamlining workflows that involve any sort of text formatting, conversion, or distribution.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
cloudpress: {
type: "app",
app: "cloudpress",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.usecloudpress.com/v2/account`,
headers: {
Authorization: `Bearer ${this.cloudpress.$auth.personal_access_token}`,
"Content-Type": `application/json`,
},
})
},
})
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`,
},
})
},
})