← iAuditor by SafetyCulture + LaunchDarkly integrations

Toggle Feature Flag with LaunchDarkly API on Action Created from iAuditor by SafetyCulture API

Pipedream makes it easy to connect APIs for LaunchDarkly, iAuditor by SafetyCulture and 3,000+ other apps remarkably fast.

Trigger workflow on
Action Created from the iAuditor by SafetyCulture API
Next, do this
Toggle Feature Flag with the LaunchDarkly API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
8 min
Watch now ➜

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo

Developers Pipedream

Getting Started

This integration creates a workflow with a iAuditor by SafetyCulture trigger and LaunchDarkly action. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Select this integration
  2. Configure the Action Created trigger
    1. Connect your iAuditor by SafetyCulture account
  3. Configure the Toggle Feature Flag action
    1. Connect your LaunchDarkly account
    2. Select a Project Key
    3. Select a Environment Key
    4. Select a Feature Flag Key
  4. Deploy the workflow
  5. Send a test event to validate your setup
  6. Turn on the trigger

Details

This integration uses pre-built, source-available components from Pipedream's GitHub repo. These components are developed by Pipedream and the community, and verified and maintained by Pipedream.

To contribute an update to an existing component or create a new component, create a PR on GitHub. If you're new to Pipedream component development, you can start with quickstarts for trigger span and action development, and then review the component API reference.

Trigger

Description:Emit new event when a new action is created.
Version:0.0.1
Key:iauditor_by_safetyculture-action-created

iAuditor by SafetyCulture Overview

iAuditor by SafetyCulture API allows you to tap into a rich reservoir of safety and quality inspection data, enabling you to automate workflows around inspection management. With this API on Pipedream, you can create custom integrations to trigger actions based on audit completions, new issues, or updates in iAuditor. Streamline safety processes, connect with other tools, and manipulate inspection data to fit your needs.

Trigger Code

import common from "../common/common.mjs"; import sampleEmit from "./test-event.mjs"; export default { ...common, key: "iauditor_by_safetyculture-action-created", name: "Action Created", description: "Emit new event when a new action is created.", version: "0.0.1", type: "source", dedupe: "unique", methods: { ...common.methods, getEvent() { return "TRIGGER_EVENT_ACTION_CREATED"; }, generateMeta(action) { return { id: action.action_id, summary: `New action "${action.action_id}"`, ts: Date.parse(action.created_at), }; }, }, sampleEmit, }; 

Trigger Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI and CLI.
LabelPropTypeDescription
iAuditor by SafetyCulturesafetycultureappThis component uses the iAuditor by SafetyCulture app.
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
N/Ahttp$.interface.httpThis component uses $.interface.http to generate a unique URL when the component is first instantiated. Each request to the URL will trigger the run() method of the component.

Trigger Authentication

iAuditor by SafetyCulture uses API keys for authentication. When you connect your iAuditor by SafetyCulture account, Pipedream securely stores the keys so you can easily authenticate to iAuditor by SafetyCulture APIs in both code and no-code steps.

Generate and copy your API Token from your SafetyCulture account

About iAuditor by SafetyCulture

SafetyCulture (iAuditor) is an inspection, issue capture and corrective action platform for teams that’s used over 50,000 times a day in over 85 countries.

Action

Description:Toggles the status of a feature flag, switching it from active to inactive, or vice versa. [See the documentation](https://apidocs.launchdarkly.com/tag/Feature-flags#operation/patchFeatureFlag)
Version:0.0.3
Key:launchdarkly-toggle-feature-flag

LaunchDarkly Overview

The LaunchDarkly API provides programmatic control over feature flags and toggle management, allowing for real-time updates across different environments. By leveraging these capabilities with Pipedream, developers can automate feature rollouts, audience targeting, and performance monitoring. Through Pipedream's event-driven architecture, you can orchestrate workflows that react to changes in LaunchDarkly, sync feature flag data with other tools, and manage flag lifecycles with precision.

Action Code

import app from "../../launchdarkly.app.mjs"; export default { key: "launchdarkly-toggle-feature-flag", name: "Toggle Feature Flag", description: "Toggles the status of a feature flag, switching it from active to inactive, or vice versa. [See the documentation](https://apidocs.launchdarkly.com/tag/Feature-flags#operation/patchFeatureFlag)", version: "0.0.3", annotations: { destructiveHint: false, openWorldHint: true, readOnlyHint: false, }, type: "action", props: { app, projectKey: { propDefinition: [ app, "project", ], }, environmentKey: { propDefinition: [ app, "environment", ({ projectKey }) => ({ projectKey, }), ], }, featureFlagKey: { propDefinition: [ app, "flag", ({ projectKey, environmentKey, }) => ({ projectKey, environmentKey, }), ], }, }, async run({ $ }) { const { app, projectKey, environmentKey, featureFlagKey, } = this; const { environments: { [environmentKey]: { on: isOn } } } = await app.getFeatureFlag({ $, projectKey, featureFlagKey, }); const response = await app.updateFeatureFlag({ $, projectKey, featureFlagKey, headers: { "Content-Type": "application/json; domain-model=launchdarkly.semanticpatch", }, data: { environmentKey, instructions: [ { kind: isOn ? "turnFlagOff" : "turnFlagOn", }, ], }, }); $.export("$summary", "Successfully toggled the feature flag."); return response; }, }; 

Action Configuration

This component may be configured based on the props defined in the component code. Pipedream automatically prompts for input values in the UI.

LabelPropTypeDescription
LaunchDarklyappappThis component uses the LaunchDarkly app.
Project KeyprojectKeystringSelect a value from the drop down menu.
Environment KeyenvironmentKeystringSelect a value from the drop down menu.
Feature Flag KeyfeatureFlagKeystringSelect a value from the drop down menu.

Action Authentication

LaunchDarkly uses API keys for authentication. When you connect your LaunchDarkly account, Pipedream securely stores the keys so you can easily authenticate to LaunchDarkly APIs in both code and no-code steps.

Create an access token for LaunchDarkly's REST API at https://app.launchdarkly.com/settings/authorization

About LaunchDarkly

Fast and reliable feature management for the modern enterprise.

More Ways to Connect LaunchDarkly + iAuditor by SafetyCulture

Create Inspection with iAuditor by SafetyCulture API on New Access Token Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Create User with iAuditor by SafetyCulture API on New Access Token Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Export Inspection to PDF or Word with iAuditor by SafetyCulture API on New Access Token Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Generate PDF Report with iAuditor by SafetyCulture API on New Access Token Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Share Inspection with iAuditor by SafetyCulture API on New Access Token Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Update User with iAuditor by SafetyCulture API on New Access Token Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Create Inspection with iAuditor by SafetyCulture API on New Flag Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Create User with iAuditor by SafetyCulture API on New Flag Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Export Inspection to PDF or Word with iAuditor by SafetyCulture API on New Flag Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Generate PDF Report with iAuditor by SafetyCulture API on New Flag Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Share Inspection with iAuditor by SafetyCulture API on New Flag Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Update User with iAuditor by SafetyCulture API on New Flag Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Create Inspection with iAuditor by SafetyCulture API on New User Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Create User with iAuditor by SafetyCulture API on New User Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Export Inspection to PDF or Word with iAuditor by SafetyCulture API on New User Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Generate PDF Report with iAuditor by SafetyCulture API on New User Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Share Inspection with iAuditor by SafetyCulture API on New User Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Update User with iAuditor by SafetyCulture API on New User Event from LaunchDarkly API
LaunchDarkly + iAuditor by SafetyCulture
 
Try it
Evaluate Feature Flag with LaunchDarkly API on Action Created from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + LaunchDarkly
 
Try it
Evaluate Feature Flag with LaunchDarkly API on Inspection Completed from iAuditor by SafetyCulture API
iAuditor by SafetyCulture + LaunchDarkly
 
Try it
Action Created from the iAuditor by SafetyCulture API

Emit new event when a new action is created.

 
Try it
Inspection Completed from the iAuditor by SafetyCulture API

Emit new event when an inspection has completed.

 
Try it
New Access Token Event from the LaunchDarkly API

Emit new event when a new access token activity happens. See the documentation

 
Try it
New Flag Event from the LaunchDarkly API

Emit new event when flag activity occurs. See the documentation

 
Try it
New User Event from the LaunchDarkly API

Emit new event when user activity is noted. See the documentation

 
Try it
Create Inspection with the iAuditor by SafetyCulture API

Create a new inspection in iAuditor by SafetyCulture. See the documentation

 
Try it
Create User with the iAuditor by SafetyCulture API

Create a new user in iAuditor by SafetyCulture. See the documentation

 
Try it
Export Inspection to PDF or Word with the iAuditor by SafetyCulture API

Retrieve an inspection report formatted as a PDF or Word (docx) document.See the documentation

 
Try it
Generate PDF Report with the iAuditor by SafetyCulture API

Retrieve the web report link for the specified inspection. This will return the existing link if one has been generated before, or generate a new one if one does not exist already. See the documentation

 
Try it
Share Inspection with the iAuditor by SafetyCulture API

Share an inspection with one or more users in iAuditor by SafetyCulture. See the documentation

 
Try it
Update User with the iAuditor by SafetyCulture API

Update an existing user in iAuditor by SafetyCulture. See the documentation

 
Try it
Evaluate Feature Flag with the LaunchDarkly API

Evaluates an existing feature flag for a specific user or in a general context. See the documentation

 
Try it
Get Feature Flag with the LaunchDarkly API

Get a feature flag by key. See the documentation

 
Try it
Get Feature Flag Status with the LaunchDarkly API

Get the status of a feature flag. See the documentation

 
Try it
Get Project with the LaunchDarkly API

Get a project by key. See the documentation

 
Try it
List Environments with the LaunchDarkly API

List all environments. See the documentation

 
Try it
List Feature Flags with the LaunchDarkly API

List all feature flags. See the documentation

 
Try it
List Members with the LaunchDarkly API

List all members in an account. See the documentation

 
Try it
List Projects with the LaunchDarkly API

List all projects. See the documentation

 
Try it
Toggle Feature Flag with the LaunchDarkly API

Toggles the status of a feature flag, switching it from active to inactive, or vice versa. See the documentation

 
Try it
Update Feature Flag with the LaunchDarkly API

Updates an existing feature flag using a JSON object. See the documentation

 
Try it

Explore Other Apps

1
-
24
of
3,000+
apps by most popular

Node
Node
Anything you can do with Node.js, you can do in a Pipedream workflow. This includes using most of npm's 400,000+ packages.
Python
Python
Anything you can do in Python can be done in a Pipedream Workflow. This includes using any of the 350,000+ PyPi packages available in your Python powered workflows.
Notion
Notion
Notion is a new tool that blends your everyday work apps into one. It's the all-in-one workspace for you and your team.
OpenAI (ChatGPT)
OpenAI (ChatGPT)
OpenAI is an AI research and deployment company with the mission to ensure that artificial general intelligence benefits all of humanity. They are the makers of popular models like ChatGPT, DALL-E, and Whisper.
Anthropic (Claude)
Anthropic (Claude)
AI research and products that put safety at the frontier. Introducing Claude, a next-generation AI assistant for your tasks, no matter the scale.
Google Sheets
Google Sheets
Use Google Sheets to create and edit online spreadsheets. Get insights together with secure sharing in real-time and from any device.
Telegram
Telegram
Telegram, is a cloud-based, cross-platform, encrypted instant messaging (IM) service.
Google Drive
Google Drive
Google Drive is a file storage and synchronization service which allows you to create and share your work online, and access your documents from anywhere.
HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
Google Calendar
Google Calendar
With Google Calendar, you can quickly schedule meetings and events and get reminders about upcoming activities, so you always know what’s next.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream workflows
Shopify
Shopify
Shopify is a complete commerce platform that lets anyone start, manage, and grow a business. You can use Shopify to build an online store, manage sales, market to customers, and accept payments in digital and physical locations.
Supabase
Supabase
Supabase is an open source Firebase alternative.
MySQL
MySQL
MySQL is an open-source relational database management system.
PostgreSQL
PostgreSQL
PostgreSQL is a free and open-source relational database management system emphasizing extensibility and SQL compliance.
AWS
AWS
Premium
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Twilio SendGrid
Twilio SendGrid
Premium
Send marketing and transactional email through the Twilio SendGrid platform with the Email API, proprietary mail transfer agent, and infrastructure for scalable delivery.
Amazon SES
Amazon SES
Amazon SES is a cloud-based email service provider that can integrate into any application for high volume email automation
Klaviyo
Klaviyo
Premium
Klaviyo unifies your data, channels, and AI agents in one platform—text, WhatsApp, email marketing, and more—driving growth with every interaction.
Zendesk
Zendesk
Premium
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
ServiceNow
ServiceNow
Premium
Beta
The smarter way to workflow
Slack
Slack
Slack is the AI-powered platform for work bringing all of your conversations, apps, and customers together in one place. Around the world, Slack is helping businesses of all sizes grow and send productivity through the roof.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.