← Noticeable

Create Publication with Noticeable API

Pipedream makes it easy to connect APIs for Noticeable and 1,600+ other apps remarkably fast.

Trigger workflow on
HTTP requests, schedules and app events
Next, do this
Create Publication with the Noticeable API
No credit card required
Intro to Pipedream
Watch us build a workflow
Watch us build a workflow
7 min
Watch now ➜

Trusted by 750,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

Create a workflow to Create Publication with the Noticeable API. When you configure and deploy the workflow, it will run on Pipedream's servers 24x7 for free.

  1. Configure the Create Publication action
    1. Connect your Noticeable account
    2. Select a Project ID
    3. Configure Author Fullname
    4. Optional- Configure Author Email
    5. Configure Post Content
    6. Optional- Configure Excerpt
    7. Optional- Configure Featured Image
    8. Configure Labels
    9. Configure Published At
    10. Configure Title
  2. Select a trigger to run your workflow on HTTP requests, schedules or app events
  3. Deploy the workflow
  4. Send a test event to validate your setup
  5. Turn on the trigger

Integrations

Create Publication with Noticeable API on New Requests (Payload Only) from HTTP / Webhook API
HTTP / Webhook + Noticeable
 
Try it
Create Publication with Noticeable API on New Submission from Typeform API
Typeform + Noticeable
 
Try it
Create Publication with Noticeable API on Custom Events from Zoom API
Zoom + Noticeable
 
Try it
Create Publication with Noticeable API on New Submission (Instant) from Jotform API
Jotform + Noticeable
 
Try it
Create Publication with Noticeable API on New Custom Webhook Events from Stripe API
Stripe + Noticeable
 
Try it

Details

This is a pre-built, source-available component from Pipedream's GitHub repo. The component is 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.

Create Publication on Noticeable
Description:Creates a publication, [See the docs](https://graphdoc.noticeable.io/publication.doc.html)
Version:0.0.1
Key:noticeable-create-publication

Code

import app from "../../noticeable.app.mjs";

export default {
  type: "action",
  key: "noticeable-create-publication",
  version: "0.0.1",
  name: "Create Publication",
  description: "Creates a publication, [See the docs](https://graphdoc.noticeable.io/publication.doc.html)",
  props: {
    app,
    projectId: {
      propDefinition: [
        app,
        "projectId",
      ],
    },
    authorFullname: {
      type: "string",
      label: "Author Fullname",
      description: "The full name of the author.",
    },
    authorEmail: {
      type: "string",
      label: "Author Email",
      description: "The email address of the author.",
      optional: true,
    },
    postContent: {
      type: "string",
      label: "Post Content",
      description: "The publication content. Supports markdown, max 1500 characters.",
    },
    excerpt: {
      type: "string",
      label: "Excerpt",
      description: "A short extract of the publication content. Max 240 characters.",
      optional: true,
    },
    image: {
      type: "string",
      label: "Featured Image",
      description: "The URL of an image that represents the contents, mood, or theme of the publication, if any",
      optional: true,
    },
    labels: {
      type: "string",
      label: "Labels",
      description: "Publication labels. Must be a Label object array string, e.g. `[{name: \"New Feature\", slug: \"new-feature\", backgroundColor: \"#cccccc\", textColor: \"#111111\"}]`",
    },
    publishedAt: {
      type: "string",
      label: "Published At",
      description: "Identifies the date and time when the object is published. The value can be in the future. Must be in ISO 8601 standard, e.g. `2022-12-23T20:24:46Z`",
    },
    title: {
      type: "string",
      label: "Title",
      description: "A descriptive or general heading of the publication content. Max 80 characters.",
    },
  },
  /* eslint-disable multiline-ternary */
  async run ({ $ }) {
    const resp = await this.app.sendQuery({
      $,
      query: `mutation {
        createPublication(
          input: {
            projectId: "${this.projectId}",
            author: { fullName: "${this.authorFullname}"${this.authorEmail ? ", email: \"" + this.authorEmail + "\"" : ""} },
            content: """${this.postContent}""",
            ${this.excerpt ? "excerpt: \"" + this.excerpt + "\"," : ""}
            ${this.image ? "featuredImage: \"" + this.image + "\"," : ""}
            isDraft: false,
            labels: ${this.labels},
            publishedAt: "${this.publishedAt}",
            title: "${this.title}",
          }
        ) {
            publication {
              id
              permalink
            }
          }
        }`,
    });
    if (resp.errors) {
      console.log(resp);
      throw new Error(resp.errors[0]?.message);
    }
    $.export("$summary", `Publication has been created. ID:${resp?.data?.createPublication?.publication?.id} LINK:${resp?.data?.createPublication?.publication?.permalink}`);
    return resp;
  },
};

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.
Project IDprojectIdstringSelect a value from the drop down menu.
Author FullnameauthorFullnamestring

The full name of the author.

Author EmailauthorEmailstring

The email address of the author.

Post ContentpostContentstring

The publication content. Supports markdown, max 1500 characters.

Excerptexcerptstring

A short extract of the publication content. Max 240 characters.

Featured Imageimagestring

The URL of an image that represents the contents, mood, or theme of the publication, if any

Labelslabelsstring

Publication labels. Must be a Label object array string, e.g. [{name: "New Feature", slug: "new-feature", backgroundColor: "#cccccc", textColor: "#111111"}]

Published AtpublishedAtstring

Identifies the date and time when the object is published. The value can be in the future. Must be in ISO 8601 standard, e.g. 2022-12-23T20:24:46Z

Titletitlestring

A descriptive or general heading of the publication content. Max 80 characters.

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.

More Ways to Use Noticeable

Triggers

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

Actions

Create Email Subscription with the Noticeable API

Creates an email subscription, 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
-
12
of
1,600+
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.
Beta
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.
Schedule
Schedule
Trigger workflows on an interval or cron schedule.
Beta
Data Stores
Data Stores
Use Pipedream Data Stores to manage state throughout your workflows.
Telegram Bot
Telegram Bot
Telegram is a cloud-based instant messaging and voice over IP service
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.
Google Sheets
Google Sheets
With Google Sheets, you can create, edit, and collaborate wherever you are
Discord
Discord
Use this app to create a Discord source that emits messages from your guild to a Pipedream workflow.
GitHub
GitHub
Where the world builds software. Millions of developers and companies build, ship, and maintain their software on GitHub—the largest and most advanced development platform in the world.
Formatting
Formatting
Pre-built actions to make formatting and manipulating data within your workflows easier.
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.