API Documentation

API Endpoint

Webhook Logs

Webhook Logs

The Webhook Log object represents a record of an unsuccessful webhook delivery attempt. When a webhook fails to deliver, a log is created with details about the failure.

Supported filter params

  • id

  • webhook_id (array)

  • retry_attempt

  • retry_job_id

  • before (date)

  • after (date)

GET /api/v2/webhook_logs
Requestsreturns webhooks logs

GET  /api/v2/webhook_logs

Headers
Accept: text/xml,application/xml,application/xhtml+xml,text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5
Content-Type: application/vnd.api+json
Responses200
Headers
Content-Type: application/vnd.api+json; charset=utf-8
Body
{
  "data": [
    {
      "id": "2",
      "type": "webhook_logs",
      "attributes": {
        "target_url": null,
        "status_code": null,
        "retry_attempt": null,
        "retry_job_id": null,
        "created_at": "2025-07-14T06:18:25.609+02:00",
        "payload": {}
      },
      "relationships": {
        "organization": {
          "data": {
            "type": "organizations",
            "id": "2195"
          }
        },
        "webhook": {
          "meta": {
            "included": false
          }
        }
      }
    },
    {
      "id": "1",
      "type": "webhook_logs",
      "attributes": {
        "target_url": null,
        "status_code": null,
        "retry_attempt": null,
        "retry_job_id": null,
        "created_at": "2025-07-14T06:18:25.590+02:00",
        "payload": {}
      },
      "relationships": {
        "organization": {
          "data": {
            "type": "organizations",
            "id": "2195"
          }
        },
        "webhook": {
          "meta": {
            "included": false
          }
        }
      }
    }
  ],
  "links": {
    "first": "http://api-test.productive.io/api/v2/webhook_logs?page%5Bnumber%5D=1&page%5Bsize%5D=30",
    "last": "http://api-test.productive.io/api/v2/webhook_logs?page%5Bnumber%5D=1&page%5Bsize%5D=30"
  },
  "meta": {
    "current_page": 1,
    "total_pages": 1,
    "total_count": 2,
    "page_size": 30,
    "max_page_size": 200
  }
}

Get webhook logs
GET/api/v2/webhook_logs


Generated by aglio on 14 Jul 2025