with Adobe Photoshop Lightroom and Blink?
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 Blink API allows you to access and manage data within the Blink platform, a hub for team communication and content sharing. Through Pipedream, you can automate workflows that leverage this API to streamline notifications, content distribution, and team interactions. You can create actions that respond to specific triggers, like new messages or updates to content, and connect Blink with other apps to enrich the functionality of your workflows.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
blink: {
type: "app",
app: "blink",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.joinblink.com/v2/user`,
headers: {
Authorization: `Bearer ${this.blink.$auth.token}`,
"Accept": `application/json`,
},
})
},
})