Convoy · Arazzo Workflow

Convoy Force Resend Successful Deliveries

Version 1.0.0

Find a recent successful delivery for an endpoint and force resend it by ID.

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

Provider

convoy

Workflows

force-resend-deliveries
Locate a successful delivery for an endpoint and force resend it by ID.
Lists successful event deliveries for an endpoint, branches when one is present, and force resends that delivery by passing its ID to the force resend endpoint.
2 steps inputs: apiKey, endpointId, projectID outputs: forceResendMessage, successDeliveryId
1
findSuccess
List successful event deliveries for the endpoint and branch only when at least one is found.
2
forceResend
Force resend the matched successful delivery by supplying its ID in the ids array.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: Convoy Force Resend Successful Deliveries
  summary: Find a recent successful delivery for an endpoint and force resend it by ID.
  description: >-
    Force resend re-fires a previously successful event delivery, which is
    useful when a downstream consumer lost data despite an earlier success.
    This flow lists successful deliveries for an endpoint, branches only when
    one is found, and force resends that specific delivery by its ID. 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: force-resend-deliveries
  summary: Locate a successful delivery for an endpoint and force resend it by ID.
  description: >-
    Lists successful event deliveries for an endpoint, branches when one is
    present, and force resends that delivery by passing its ID to the force
    resend endpoint.
  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 successful delivery should be force resent.
  steps:
  - stepId: findSuccess
    description: >-
      List successful event deliveries for the endpoint and branch only when at
      least one 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:
      - Success
    - name: perPage
      in: query
      value: 1
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      successDeliveryId: $response.body#/data/content/0/uid
    onSuccess:
    - name: successFound
      type: goto
      stepId: forceResend
      criteria:
      - context: $response.body
        condition: $.data.content.length > 0
        type: jsonpath
  - stepId: forceResend
    description: >-
      Force resend the matched successful delivery by supplying its ID in the
      ids array.
    operationId: ForceResendEventDeliveries
    parameters:
    - name: Authorization
      in: header
      value: Bearer $inputs.apiKey
    - name: projectID
      in: path
      value: $inputs.projectID
    requestBody:
      contentType: application/json
      payload:
        ids:
        - $steps.findSuccess.outputs.successDeliveryId
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      message: $response.body#/message
  outputs:
    successDeliveryId: $steps.findSuccess.outputs.successDeliveryId
    forceResendMessage: $steps.forceResend.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-force-resend-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.