Novu · Arazzo Workflow

Novu Bulk Onboard Subscribers and Broadcast an Announcement

Version 1.0.0

Create many subscribers in one call, then broadcast a single announcement to all subscribers.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub NotificationMessagingIn-AppEmailSMSPushChatWorkflowsOpen-SourceSubscribersTopicsInboxWorkflow OrchestrationMulti-ChannelDigestMCPFrameworkReactArazzoWorkflows

Provider

novu

Workflows

bulk-onboard-and-broadcast
Bulk create subscribers, then broadcast an announcement to all of them.
Creates a batch of subscribers in a single request and broadcasts the named workflow to all existing subscribers in the environment.
2 steps inputs: payload, subscribers, workflowId outputs: created, transactionId
1
bulkCreateSubscribers
Create the supplied subscribers in a single bulk request. Novu returns the created, updated, and failed sets.
2
broadcastAnnouncement
Broadcast the named workflow to all existing subscribers in the environment. Novu returns 200 with the trigger acknowledgement.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Novu Bulk Onboard Subscribers and Broadcast an Announcement
  summary: Create many subscribers in one call, then broadcast a single announcement to all subscribers.
  description: >-
    A migration and announcement pattern. The workflow bulk-creates a batch of
    subscribers (up to 500 per request) and then broadcasts a workflow to every
    subscriber in the environment - useful for seeding an audience and
    immediately sending a system-wide announcement. Every step spells out its
    request inline so the flow can be read and executed without opening the
    underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: eventsApi
  url: ../openapi/novu-events-api-openapi.yml
  type: openapi
- name: subscribersApi
  url: ../openapi/novu-subscribers-api-openapi.yml
  type: openapi
workflows:
- workflowId: bulk-onboard-and-broadcast
  summary: Bulk create subscribers, then broadcast an announcement to all of them.
  description: >-
    Creates a batch of subscribers in a single request and broadcasts the named
    workflow to all existing subscribers in the environment.
  inputs:
    type: object
    required:
    - subscribers
    - workflowId
    properties:
      subscribers:
        type: array
        description: Array of subscriber objects to create in bulk (each requires subscriberId).
        items:
          type: object
          required:
          - subscriberId
          properties:
            subscriberId:
              type: string
            email:
              type: string
            firstName:
              type: string
            lastName:
              type: string
      workflowId:
        type: string
        description: The trigger identifier of the workflow to broadcast.
      payload:
        type: object
        description: Custom payload object used to render the broadcast workflow.
  steps:
  - stepId: bulkCreateSubscribers
    description: >-
      Create the supplied subscribers in a single bulk request. Novu returns the
      created, updated, and failed sets.
    operationId: SubscribersV1Controller_bulkCreateSubscribers
    requestBody:
      contentType: application/json
      payload:
        subscribers: $inputs.subscribers
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      created: $response.body#/data/created
      updated: $response.body#/data/updated
      failed: $response.body#/data/failed
  - stepId: broadcastAnnouncement
    description: >-
      Broadcast the named workflow to all existing subscribers in the
      environment. Novu returns 200 with the trigger acknowledgement.
    operationId: EventsController_broadcastEventToAll
    requestBody:
      contentType: application/json
      payload:
        name: $inputs.workflowId
        payload: $inputs.payload
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      acknowledged: $response.body#/data/acknowledged
      status: $response.body#/data/status
      transactionId: $response.body#/data/transactionId
  outputs:
    created: $steps.bulkCreateSubscribers.outputs.created
    transactionId: $steps.broadcastAnnouncement.outputs.transactionId

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/novu-bulk-onboard-and-broadcast-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.