v1

latestOpenAPI 3.0.32026-07-246376162.1 KB
Tasks

List webhook failures

Returns a paginated list of webhook failures, ordered from newest to oldest.

get/api/v4/tasks/webhook_failures

Query parameters

offsetinteger

The number of items to skip before starting to collect the result set.

limitinteger

The number of items to return.

string date-time
OR
Example:2024-01-01T00:00:00Z

Filter by creation time or by creation time range.

Response

OK

Example response

{
  "webhook_failures": [
    {
      "id": 149,
      "webhook": {
        "id": "0b97ce11-b6e0-49b4-8f92-68040aa324bf",
        "name": "CRM call events"
      },
      "event": "inbound.call.answered",
      "failed_target": {
        "url": "https://example.com/webhook"
      },
      "created_at": "2025-01-15T10:30:00.000000Z",
      "updated_at": "2025-01-15T10:30:00.000000Z"
    }
  ],
  "metadata": {
    "total": 100
  }
}