FinancialReports
  1. Webhooks (Management)
FinancialReports
  • FinancialReports API Documentation
  • Changelog
  • Python SDK
  • Companies
    • List Companies
      GET
    • Retrieve Company Details
      GET
  • Filings
    • List Filings
      GET
    • Retrieve Filing Details
      GET
    • Retrieve Filing Markdown
      GET
  • Filing Types
    • The Financial Reporting Classification Framework (FRCF)
    • List Filing Types
      GET
    • Retrieve Filing Type
      GET
  • Filing Categories
    • List Filing Categories
      GET
    • Retrieve Filing Category
      GET
  • Languages
    • Understanding Language Codes
    • List Languages
      GET
    • Retrieve Language
      GET
  • ISIC Classifications
    • Understanding ISIC Classification
    • List ISIC Classes
    • Retrieve ISIC Class
    • List ISIC Divisions
    • Retrieve ISIC Division
    • List ISIC Groups
    • Retrieve ISIC Group
    • List ISIC Sections
    • Retrieve ISIC Section
  • Countries
    • Understanding Country Codes
    • List Countries
    • Retrieve Country
  • Sources
    • Understanding Data Sources
    • List Data Sources
    • Retrieve Data Source
  • Watchlist
    • Get User's Watchlist
    • Add Company to Watchlist
    • Remove Company from Watchlist
  • Webhooks (Management)
    • List Webhooks
      GET
    • Create Webhook
      POST
    • Retrieve Webhook
      GET
    • Update Webhook
      PUT
    • Partial Update Webhook
      PATCH
    • Delete Webhook
      DELETE
    • Regenerate Secret Key
      POST
    • Test Webhook
      POST
    • List Delivery Logs
      GET
  • Schemas
    • Company
    • Language
    • Filing
    • Source
    • CompanyMinimal
    • ErrorDetail
    • Country
    • FilingType
    • DesignatedSponsor
    • FilingSummary
    • ISICClass
    • FilingCategory
    • FilingProcessedPayload
    • ISICDivision
    • ISICGroup
    • ISICSection
    • PaginatedFilingTypeList
    • PaginatedCompanyMinimalList
    • PaginatedFilingSummaryList
    • PaginatedISICClassList
    • PaginatedCountryList
    • PaginatedISICDivisionList
    • ListedStockExchange
    • PaginatedSourceList
    • PaginatedISICGroupList
    • PaginatedISICSectionList
    • PaginatedLanguageList
    • PaginatedFilingCategoryList
    • WatchlistAction
    • WatchlistCompany
    • WatchlistResponse
    • PaginatedWebhookList
    • PatchedWebhook
    • StockIndex
    • PaginatedWebhookDeliveryList
    • ProcessingStatusEnum
    • Webhook
    • StatusEnum
    • WebhookCompanyPayload
    • WebhookFilingPayload
    • WebhookDelivery
    • WebhookSecret
  1. Webhooks (Management)

List Delivery Logs

GET
/webhooks/{id}/deliveries/
Retrieve a paginated list of delivery attempts (logs) for a specific webhook.

Request

Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.financialreports.eu/webhooks//deliveries/' \
--header 'x-api-key;'

Responses

🟢200OK
application/json
Successfully retrieved delivery logs.
Body

Example
{
    "count": 123,
    "next": "http://api.example.org/accounts/?page=4",
    "previous": "http://api.example.org/accounts/?page=2",
    "results": [
        {
            "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f",
            "webhook_id": 0,
            "event_type": "string",
            "status": "pending",
            "response_status_code": 0,
            "duration_ms": 0,
            "created_at": "2019-08-24T14:15:22.123Z",
            "request_headers": null,
            "request_payload": null,
            "response_body": "string",
            "response_headers": null
        }
    ]
}
Modified at 2026-02-10 08:22:05
Previous
Test Webhook
Next
Company
Built with