← Noticeable + Clerk integrations

Create User Invitation with Clerk API on New Email Subscription Deleted Event from Noticeable API

Pipedream makes it easy to connect APIs for Clerk, Noticeable and 2,700+ other apps remarkably fast.

Trigger workflow on
New Email Subscription Deleted Event from the Noticeable API
Next, do this
Create User Invitation with the Clerk 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 Noticeable trigger and Clerk 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 New Email Subscription Deleted Event trigger
    1. Connect your Noticeable account
    2. Configure timer
    3. Select a Project ID
  3. Configure the Create User Invitation action
    1. Connect your Clerk account
    2. Configure Email Address
    3. Optional- Configure Public Metadata
    4. Optional- Configure Redirect URL
  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 events when an email subscription is deleted. [See the docs](https://graphdoc.noticeable.io/emailsubscription.doc.html)
Version:0.0.1
Key:noticeable-email-subscription-deleted

Noticeable Overview

The Noticeable API on Pipedream allows you to automate the management of your project's news and updates efficiently. By integrating Noticeable with Pipedream, you can trigger workflows based on new publications, update timelines, and synchronize content across various platforms. This can help keep your users or team informed about the latest changes, releases or announcements with minimal manual intervention.

Trigger Code

import common from "../common/common.mjs";

export default {
  ...common,
  key: "noticeable-email-subscription-deleted",
  name: "New Email Subscription Deleted Event",
  description: "Emit new events when an email subscription is deleted. [See the docs](https://graphdoc.noticeable.io/emailsubscription.doc.html)",
  version: "0.0.1",
  type: "source",
  dedupe: "unique",
  props: {
    ...common.props,
    projectId: {
      propDefinition: [
        common.props.app,
        "projectId",
      ],
    },
  },
  methods: {
    ...common.methods,
    getConfig() {
      return {
        queryFnName: "getEmailSubscriptionsQuery",
        resourceKey: "data.project.data.edges",
        cursorKey: "data.project.data.pageInfo.startCursor",
        compare: "delete",
        itemKey: "node",
        idKey: "email",
        queryArgs: {
          projectId: this.projectId,
        },
      };
    },
    getSummary(item) {
      return `Email subscription deleted. Email(${item?.email})`;
    },
  },
};

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
NoticeableappappThis component uses the Noticeable app.
timer$.interface.timer
N/Adb$.service.dbThis component uses $.service.db to maintain state between executions.
Project IDprojectIdstringSelect a value from the drop down menu.

Trigger Authentication

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

To communicate with the Noticeable.io's GraphQL server, you'll need an API Key

About Noticeable

Use Noticeable to announce new features, your latest releases, and relevant news. Improve user engagement with an easy to use newsfeed and changelog.

Action

Description:Creates a new invitation for the given email address and sends the invitation email. Keep in mind that you cannot create an invitation if there is already one for the given email address. Also, trying to create an invitation for an email address that already exists in your application will result to an error. [See the documentation](https://clerk.com/docs/reference/backend-api/tag/Invitations#operation/CreateInvitation)
Version:0.0.1
Key:clerk-create-user-invitation

Clerk Overview

The Clerk API lets you manage user authentication and create secure, delightful user experiences in your apps. Within Pipedream's serverless platform, you can harness this API to automate workflows that trigger on user events, sync user data across apps, and maintain robust user management without the heavy lifting of building authentication infrastructure from scratch.

Action Code

import clerk from "../../clerk.app.mjs";
import { parseObject } from "../../common/utils.mjs";

export default {
  key: "clerk-create-user-invitation",
  name: "Create User Invitation",
  version: "0.0.1",
  description: "Creates a new invitation for the given email address and sends the invitation email. Keep in mind that you cannot create an invitation if there is already one for the given email address. Also, trying to create an invitation for an email address that already exists in your application will result to an error. [See the documentation](https://clerk.com/docs/reference/backend-api/tag/Invitations#operation/CreateInvitation)",
  type: "action",
  props: {
    clerk,
    emailAddress: {
      type: "string",
      label: "Email Address",
      description: "The email address the invitation will be sent to.",
    },
    publicMetadata: {
      propDefinition: [
        clerk,
        "publicMetadata",
      ],
      description: "Metadata that will be attached to the newly created invitation. The value of this property should be a well-formed JSON object. Once the user accepts the invitation and signs up, these metadata will end up in the user's public metadata.",
      optional: true,
    },
    redirectUrl: {
      type: "string",
      label: "Redirect URL",
      description: "Optional URL which specifies where to redirect the user once they click the invitation link. This is only required if you have implemented a [custom flow](https://clerk.com/docs/custom-flows/invitations#custom-flow) and you're not using Clerk Hosted Pages or Clerk Components.",
      optional: true,
    },
  },
  async run({ $ }) {
    const response = await this.clerk.createUserInvitation({
      $,
      data: {
        email_address: this.emailAddress,
        public_metadata: parseObject(this.publicMetadata),
        redirect_url: this.redirectUrl,
      },
    });

    $.export("$summary", `A new invitation with Id: ${response.id} was successfully created!`);
    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
ClerkclerkappThis component uses the Clerk app.
Email AddressemailAddressstring

The email address the invitation will be sent to.

Public MetadatapublicMetadataobject

Metadata that will be attached to the newly created invitation. The value of this property should be a well-formed JSON object. Once the user accepts the invitation and signs up, these metadata will end up in the user's public metadata.

Redirect URLredirectUrlstring

Optional URL which specifies where to redirect the user once they click the invitation link. This is only required if you have implemented a custom flow and you're not using Clerk Hosted Pages or Clerk Components.

Action Authentication

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

About Clerk

Drop-in authentication for React and React Native.

More Ways to Connect Clerk + Noticeable

Create User with Clerk API on New Email Subscription Created Event from Noticeable API
Noticeable + Clerk
 
Try it
Create User with Clerk API on New Email Subscription Deleted Event from Noticeable API
Noticeable + Clerk
 
Try it
Create User with Clerk API on New Publication Created Event from Noticeable API
Noticeable + Clerk
 
Try it
Create User with Clerk API on New Publication Deleted Event from Noticeable API
Noticeable + Clerk
 
Try it
Create User with Clerk API on New Publication Updated Event from Noticeable API
Noticeable + Clerk
 
Try it
New Email Subscription Created Event from the Noticeable API

Emit new events when a new email subscription created. See the docs

 
Try it
New Email Subscription Deleted Event from the Noticeable API

Emit new events when an email subscription is deleted. See the docs

 
Try it
New Publication Created Event from the Noticeable API

Emit new events when a new publication created. See the docs

 
Try it
New Publication Deleted Event from the Noticeable API

Emit new events when a new publication deleted. See the docs

 
Try it
New Publication Updated Event from the Noticeable API

Emit new events when a new publication is updated. See the docs

 
Try it
Create Email Subscription with the Noticeable API

Creates an email subscription, See the docs

 
Try it
Create Publication with the Noticeable API

Creates a publication, See the docs

 
Try it
Delete Email Subscription with the Noticeable API

Deletes an email subscription, See the docs

 
Try it
Search Email Subscriptions with the Noticeable API

Searches email subscriptions for the given options. If no options given, retrieves all subscriptions, See the docs

 
Try it
Update Email Subscription with the Noticeable API

Updates an email subscription, See the docs

 
Try it

Explore Other Apps

1
-
24
of
2,700+
apps by most popular

HTTP / Webhook
HTTP / Webhook
Get a unique URL where you can send HTTP or webhook requests
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.
Pipedream Utils
Pipedream Utils
Utility functions to use within your Pipedream 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.
Pinterest
Pinterest
Pinterest is a visual discovery engine for finding ideas like recipes, home and style inspiration, and more.
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.
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.
Premium
AWS
AWS
Amazon Web Services (AWS) offers reliable, scalable, and inexpensive cloud computing services.
Premium
Twilio SendGrid
Twilio SendGrid
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
Premium
Klaviyo
Klaviyo
Email Marketing and SMS Marketing Platform
Premium
Zendesk
Zendesk
Zendesk is award-winning customer service software trusted by 200K+ customers. Make customers happy via text, mobile, phone, email, live chat, social media.
Premium
ServiceNow
ServiceNow
The smarter way to workflow
Slack
Slack
Slack is a channel-based messaging platform. With Slack, people can work together more effectively, connect all their software tools and services, and find the information they need to do their best work — all within a secure, enterprise-grade environment.
Microsoft Teams
Microsoft Teams
Microsoft Teams has communities, events, chats, channels, meetings, storage, tasks, and calendars in one place.