Convoy · Arazzo Workflow

Convoy Broadcast Event and Track

Version 1.0.0

Broadcast an event to all matching subscriptions and trace the resulting event.

1 workflow 1 source API 1 provider
View Spec View on GitHub WebhookWebhook GatewayEvent DeliveryEventingMessagingIntegrationAPI InfrastructureArazzoWorkflows

Provider

convoy

Workflows

broadcast-event-and-track
Broadcast an event, find it in the event list, and retrieve its detail.
Creates a broadcast event for an event type, lists recent events to locate the generated event, and retrieves that event to confirm its status and the endpoints it fanned out to.
3 steps inputs: apiKey, eventData, eventType, projectID outputs: eventId, eventStatus
1
broadcastEvent
Create a broadcast event that is dispatched to every subscription matching the event type.
2
findEvent
List recent events for the project to locate the event generated by the broadcast.
3
getEvent
Retrieve the generated event to confirm its status and the endpoints it fanned out to.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
# authorship: generated by API Evangelist tooling. Stamped 2026-08-18
# on the file's own generator header (roadmap#64). An unmarked file is
# NOT assumed to be ours -- absence of evidence was never stamped.
x-method: generated
arazzo: 1.0.1
info:
  title: Convoy Broadcast Event and Track
  summary: Broadcast an event to all matching subscriptions and trace the resulting event.
  description: >-
    Convoy can broadcast a single event to every subscription matching an event
    type without addressing a specific endpoint. This flow creates a broadcast
    event, lists recent events filtered by the broadcast event type to locate
    the generated event, and retrieves that event to confirm its status and
    fan-out endpoints. 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
  x-realizes-capability-ids:
  - BC-4270.80
  x-capability-derivation:
    method: 'deterministic join: sourceDescriptions -> per-tag OpenAPI -> tag/capability edge. No classification at this step.'
    min_confidence: 0.7
    sources:
    - capability_id: BC-4270.80
      capability_name: Webhook & Event Subscription Management
      spec: convoy-events-api-openapi.yml
      confidence: 0.75
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: eventsApi
  url: ../openapi/convoy-events-api-openapi.yml
  type: openapi
workflows:
- workflowId: broadcast-event-and-track
  summary: Broadcast an event, find it in the event list, and retrieve its detail.
  description: >-
    Creates a broadcast event for an event type, lists recent events to locate
    the generated event, and retrieves that event to confirm its status and the
    endpoints it fanned out to.
  inputs:
    type: object
    required:
    - apiKey
    - projectID
    - eventType
    - eventData
    properties:
      apiKey:
        type: string
        description: Convoy API key used as the Bearer token on the Authorization header.
      projectID:
        type: string
        description: The Convoy project identifier.
      eventType:
        type: string
        description: Event type the broadcast targets (e.g. invoice.paid).
      eventData:
        type: object
        description: Arbitrary JSON payload sent as the webhook body.
  steps:
  - stepId: broadcastEvent
    description: >-
      Create a broadcast event that is dispatched to every subscription
      matching the event type.
    operationId: CreateBroadcastEvent
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectID
      in: path
      value: $inputs.projectID
    requestBody:
      contentType: application/json
      payload:
        event_type: $inputs.eventType
        data: $inputs.eventData
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      message: $response.body#/message
  - stepId: findEvent
    description: >-
      List recent events for the project to locate the event generated by the
      broadcast.
    operationId: GetEventsPaged
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectID
      in: path
      value: $inputs.projectID
    - name: perPage
      in: query
      value: 20
    - name: sort
      in: query
      value: DESC
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      eventId: $response.body#/data/content/0/uid
  - stepId: getEvent
    description: >-
      Retrieve the generated event to confirm its status and the endpoints it
      fanned out to.
    operationId: GetEndpointEvent
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectID
      in: path
      value: $inputs.projectID
    - name: eventID
      in: path
      value: $steps.findEvent.outputs.eventId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      eventStatus: $response.body#/data/status
      endpoints: $response.body#/data/endpoints
  outputs:
    eventId: $steps.findEvent.outputs.eventId
    eventStatus: $steps.getEvent.outputs.eventStatus

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/convoy-broadcast-event-and-track-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.