with Cloudpress and LaunchDarkly (OAuth)?
Emit new event when a document export fails in Cloudpress.
Emit new event when a document export succeeds in Cloudpress.
Emit new event when a new access token activity happens. See the documentation
Emit new event when flag activity occurs. See the documentation
Emit new event when user activity is noted. See the documentation
Evaluates an existing feature flag for a specific user or in a general context. See the documentation
Exports all content in a collection in Cloudpress. See the documentation
Get the status of a feature flag. 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`, }, }) }, }) Launch Darkly's API provides the means to automate feature flagging and manage experiments in your software delivery. This power, harnessed within Pipedream's serverless environment, can transform how you handle software deployment strategies, perform A/B testing, and control access to new features. The API's capabilities extend to updating flags, fetching flag statuses, and managing user segments, all of which can be integrated into sophisticated, automated workflows that react to external triggers or scheduled events.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { launch_darkly_oauth: { type: "app", app: "launch_darkly_oauth", } }, async run({steps, $}) { return await axios($, { url: `https://app.launchdarkly.com/api/v2/projects`, headers: { Authorization: `Bearer ${this.launch_darkly_oauth.$auth.oauth_access_token}`, }, }) }, })