Convoy · Capability

Convoy API — Delivery Attempts

Convoy webhooks gateway — Delivery Attempts. 2 operations. Lead operation: List delivery attempts. Self-contained Naftiko capability covering one Convoy business surface.

Run with Naftiko ConvoyWebhooksDelivery Attempts

What You Can Do

GET
Getdeliveryattempts — List delivery attempts
/v1/projects/{project-id}/eventdeliveries/{event-delivery-id}/deliveryattempts
GET
Getdeliveryattempt — Retrieve a delivery attempt
/v1/projects/{project-id}/eventdeliveries/{event-delivery-id}/deliveryattempts/{delivery-attempt-id}

MCP Tools

list-delivery-attempts

List delivery attempts

read-only idempotent
retrieve-delivery-attempt

Retrieve a delivery attempt

read-only idempotent

Capability Spec

convoy-delivery-attempts.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: "Convoy API \u2014 Delivery Attempts"
  description: "Convoy webhooks gateway \u2014 Delivery Attempts. 2 operations. Lead operation: List delivery attempts. Self-contained\
    \ Naftiko capability covering one Convoy business surface."
  tags:
  - Convoy
  - Webhooks
  - Delivery Attempts
  created: '2026-05-22'
  modified: '2026-05-22'
binds:
- namespace: env
  keys:
    CONVOY_API_KEY: CONVOY_API_KEY
capability:
  consumes:
  - type: http
    namespace: convoy-delivery-attempts
    baseUri: https://us.getconvoy.cloud/api
    description: "Convoy API \u2014 Delivery Attempts business capability. Self-contained, no shared references."
    authentication:
      type: bearer
      token: '{{env.CONVOY_API_KEY}}'
    resources:
    - name: v1-projects-project-id-eventdeliveries-event-delivery-id-deliveryattempts
      path: /v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts
      operations:
      - name: GetDeliveryAttempts
        method: GET
        description: List delivery attempts
        inputParameters:
        - name: projectID
          in: path
          type: string
          required: true
          description: Project ID
        - name: eventDeliveryID
          in: path
          type: string
          required: true
          description: event delivery id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-projects-project-id-eventdeliveries-event-delivery-id-deliveryattempts-delivery-attempt-id
      path: /v1/projects/{projectID}/eventdeliveries/{eventDeliveryID}/deliveryattempts/{deliveryAttemptID}
      operations:
      - name: GetDeliveryAttempt
        method: GET
        description: Retrieve a delivery attempt
        inputParameters:
        - name: projectID
          in: path
          type: string
          required: true
          description: Project ID
        - name: eventDeliveryID
          in: path
          type: string
          required: true
          description: event delivery id
        - name: deliveryAttemptID
          in: path
          type: string
          required: true
          description: delivery attempt id
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
  exposes:
  - type: rest
    namespace: convoy-delivery-attempts-rest
    port: 8080
    description: "REST adapter for Convoy API \u2014 Delivery Attempts. One Spectral-compliant resource per consumed operation,\
      \ prefixed with /v1."
    resources:
    - path: /v1/projects/{project-id}/eventdeliveries/{event-delivery-id}/deliveryattempts
      name: v1-projects-project-id-eventdeliveries-event-delivery-id-deliveryattempts
      description: REST surface for /v1/projects/{project-id}/eventdeliveries/{event-delivery-id}/deliveryattempts.
      operations:
      - method: GET
        name: GetDeliveryAttempts
        description: List delivery attempts
        call: convoy-delivery-attempts.GetDeliveryAttempts
        with:
          projectID: rest.projectID
          eventDeliveryID: rest.eventDeliveryID
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{project-id}/eventdeliveries/{event-delivery-id}/deliveryattempts/{delivery-attempt-id}
      name: v1-projects-project-id-eventdeliveries-event-delivery-id-deliveryattempts-delivery-attempt-id
      description: REST surface for /v1/projects/{project-id}/eventdeliveries/{event-delivery-id}/deliveryattempts/{delivery-attempt-id}.
      operations:
      - method: GET
        name: GetDeliveryAttempt
        description: Retrieve a delivery attempt
        call: convoy-delivery-attempts.GetDeliveryAttempt
        with:
          projectID: rest.projectID
          eventDeliveryID: rest.eventDeliveryID
          deliveryAttemptID: rest.deliveryAttemptID
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: convoy-delivery-attempts-mcp
    port: 9090
    transport: http
    description: "MCP adapter for Convoy API \u2014 Delivery Attempts. One tool per consumed operation, routed inline through\
      \ this capability's consumes block."
    tools:
    - name: list-delivery-attempts
      description: List delivery attempts
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: convoy-delivery-attempts.GetDeliveryAttempts
      with:
        projectID: tools.projectID
        eventDeliveryID: tools.eventDeliveryID
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-delivery-attempt
      description: Retrieve a delivery attempt
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: convoy-delivery-attempts.GetDeliveryAttempt
      with:
        projectID: tools.projectID
        eventDeliveryID: tools.eventDeliveryID
        deliveryAttemptID: tools.deliveryAttemptID
      outputParameters:
      - type: object
        mapping: $.