with LaunchDarkly (OAuth) and Miro Developer App?
Emit new event when a card item is updated on a Miro board
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
Emit new event when an item's position changes in a Miro Custom App.
Evaluates an existing feature flag for a specific user or in a general context. See the documentation
Get the status of a feature flag. See the documentation
Creates a card item on a Miro board. See the documentation
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}`, }, }) }, }) The Miro Developer App API lets you extend the functionality of Miro, an online collaborative whiteboarding platform. On Pipedream, you can automate interactions with Miro boards, such as creating or updating content, and extracting data for reporting or integration purposes. This can streamline collaboration and project management by automating repetitive tasks and connecting Miro with other tools and services.
import { axios } from "@pipedream/platform" export default defineComponent({ props: { miro_custom_app: { type: "app", app: "miro_custom_app", } }, async run({steps, $}) { return await axios($, { url: `https://api.miro.com/v2/boards`, headers: { Authorization: `Bearer ${this.miro_custom_app.$auth.access_token}`, }, }) }, })