Convoy · Arazzo Workflow

Convoy Batch Retry Failed Deliveries

Version 1.0.0

Detect failed deliveries for an endpoint and batch retry them in one call.

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

Provider

convoy

Workflows

batch-retry-failed-deliveries
Find failed deliveries for an endpoint and batch retry them.
Lists failed event deliveries for a single endpoint, branches when at least one failure is present, and batch retries all deliveries matching that endpoint and the Failure status.
2 steps inputs: apiKey, endpointId, projectID outputs: batchRetryMessage, firstFailedId
1
findFailures
List failed event deliveries for the endpoint and branch only when at least one failure is found.
2
batchRetry
Batch retry every event delivery matching the endpoint and the Failure status filter.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Convoy Batch Retry Failed Deliveries
  summary: Detect failed deliveries for an endpoint and batch retry them in one call.
  description: >-
    A bulk remediation flow for an endpoint that has accumulated failed
    deliveries. It lists failed event deliveries scoped to a single endpoint,
    branches only when failures exist, and then issues a batch retry that
    reprocesses every delivery matching the same endpoint and Failure status
    filter. 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-event-deliveries-api-openapi.yml
      confidence: 0.85
    model: Turbo EA Capabilities by Vincent Verdet — Turbo EA, https://github.com/vincentmakes/turbo-ea-capabilities, CC BY 4.0
sourceDescriptions:
- name: eventDeliveriesApi
  url: ../openapi/convoy-event-deliveries-api-openapi.yml
  type: openapi
workflows:
- workflowId: batch-retry-failed-deliveries
  summary: Find failed deliveries for an endpoint and batch retry them.
  description: >-
    Lists failed event deliveries for a single endpoint, branches when at least
    one failure is present, and batch retries all deliveries matching that
    endpoint and the Failure status.
  inputs:
    type: object
    required:
    - apiKey
    - projectID
    - endpointId
    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.
      endpointId:
        type: string
        description: The endpoint whose failed deliveries should be batch retried.
  steps:
  - stepId: findFailures
    description: >-
      List failed event deliveries for the endpoint and branch only when at
      least one failure is found.
    operationId: GetEventDeliveriesPaged
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectID
      in: path
      value: $inputs.projectID
    - name: endpointId
      in: query
      value:
      - $inputs.endpointId
    - name: status
      in: query
      value:
      - Failure
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      firstFailedId: $response.body#/data/content/0/uid
    onSuccess:
    - name: failuresFound
      type: goto
      stepId: batchRetry
      criteria:
      - context: $response.body
        condition: $.data.content.length > 0
        type: jsonpath
  - stepId: batchRetry
    description: >-
      Batch retry every event delivery matching the endpoint and the Failure
      status filter.
    operationId: BatchRetryEventDelivery
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectID
      in: path
      value: $inputs.projectID
    - name: endpointId
      in: query
      value:
      - $inputs.endpointId
    - name: status
      in: query
      value:
      - Failure
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      message: $response.body#/message
  outputs:
    firstFailedId: $steps.findFailures.outputs.firstFailedId
    batchRetryMessage: $steps.batchRetry.outputs.message

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-batch-retry-failed-deliveries-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.