Novu · Arazzo Workflow

Novu Subscriber Inbox Triage

Version 1.0.0

Confirm a subscriber, read their unread in-app inbox, then mark all notifications as read.

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

Provider

novu

Workflows

subscriber-inbox-triage
Retrieve a subscriber, read unread inbox notifications, then mark all read.
Retrieves the subscriber, lists their unread in-app notifications, and marks all of their in-app notifications as read.
3 steps inputs: subscriberId outputs: notifications, subscriberId
1
getSubscriber
Retrieve the subscriber by id to confirm they exist before reading their inbox.
2
listUnread
List the subscriber's unread in-app notifications to review the current backlog before clearing it.
3
markAllRead
Mark all of the subscriber's in-app notifications as read to clear the inbox. An empty body applies to all notifications with no extra filtering.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Novu Subscriber Inbox Triage
  summary: Confirm a subscriber, read their unread in-app inbox, then mark all notifications as read.
  description: >-
    A help-desk / inbox-management pattern for the Novu in-app (Inbox) channel.
    The workflow retrieves the subscriber to confirm they exist, lists their
    unread in-app notifications so the current backlog can be reviewed, and then
    marks all matching in-app notifications as read to clear the inbox. 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: subscribersApi
  url: ../openapi/novu-subscribers-api-openapi.yml
  type: openapi
workflows:
- workflowId: subscriber-inbox-triage
  summary: Retrieve a subscriber, read unread inbox notifications, then mark all read.
  description: >-
    Retrieves the subscriber, lists their unread in-app notifications, and marks
    all of their in-app notifications as read.
  inputs:
    type: object
    required:
    - subscriberId
    properties:
      subscriberId:
        type: string
        description: The identifier of the subscriber whose inbox to triage.
  steps:
  - stepId: getSubscriber
    description: >-
      Retrieve the subscriber by id to confirm they exist before reading their
      inbox.
    operationId: SubscribersController_getSubscriber
    parameters:
    - name: subscriberId
      in: path
      value: $inputs.subscriberId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      subscriberId: $response.body#/data/subscriberId
  - stepId: listUnread
    description: >-
      List the subscriber's unread in-app notifications to review the current
      backlog before clearing it.
    operationId: SubscribersController_getSubscriberNotifications
    parameters:
    - name: subscriberId
      in: path
      value: $steps.getSubscriber.outputs.subscriberId
    - name: read
      in: query
      value: false
    - name: limit
      in: query
      value: 100
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      notifications: $response.body#/data/data
      hasMore: $response.body#/data/hasMore
  - stepId: markAllRead
    description: >-
      Mark all of the subscriber's in-app notifications as read to clear the
      inbox. An empty body applies to all notifications with no extra filtering.
    operationId: SubscribersController_markAllNotificationsAsRead
    parameters:
    - name: subscriberId
      in: path
      value: $steps.getSubscriber.outputs.subscriberId
    requestBody:
      contentType: application/json
      payload: {}
    successCriteria:
    - condition: $statusCode == 204
    outputs:
      cleared: $statusCode
  outputs:
    subscriberId: $steps.getSubscriber.outputs.subscriberId
    notifications: $steps.listUnread.outputs.notifications

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-subscriber-inbox-triage-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.