Convoy · Schema

Convoy DeliveryAttempt

An individual HTTP attempt against a destination endpoint while delivering an event.

WebhooksWebhook GatewayEvent DeliveryEventingMessagingIntegrationAPI Infrastructure

Properties

Name Type Description
api_version string
created_at string
deleted_at string
endpoint_id string
error string
http_status string
ip_address string
method string
msg_id string
project_id string
request_http_header object
response_data string
response_http_header object
status boolean
uid string
updated_at string
url string
View JSON Schema on GitHub

JSON Schema

convoy-delivery-attempt-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://api-evangelist.github.io/convoy/json-schema/convoy-delivery-attempt-schema.json",
  "title": "Convoy DeliveryAttempt",
  "description": "An individual HTTP attempt against a destination endpoint while delivering an event.",
  "properties": {
    "api_version": {
      "type": "string"
    },
    "created_at": {
      "type": "string"
    },
    "deleted_at": {
      "type": "string"
    },
    "endpoint_id": {
      "type": "string"
    },
    "error": {
      "type": "string"
    },
    "http_status": {
      "type": "string"
    },
    "ip_address": {
      "type": "string"
    },
    "method": {
      "type": "string"
    },
    "msg_id": {
      "type": "string"
    },
    "project_id": {
      "type": "string"
    },
    "request_http_header": {
      "additionalProperties": {
        "type": "string"
      },
      "type": "object"
    },
    "response_data": {
      "type": "string"
    },
    "response_http_header": {
      "additionalProperties": {
        "type": "string"
      },
      "type": "object"
    },
    "status": {
      "type": "boolean"
    },
    "uid": {
      "type": "string"
    },
    "updated_at": {
      "type": "string"
    },
    "url": {
      "type": "string"
    }
  },
  "type": "object"
}