Get supportRequest a Demo
  • Get Started
    • Welcome
  • Guides
    • Authentication
    • Patient Management
    • Order Management
    • Device Management
    • Webhook Management
  • Webhooks
  • API Reference
  • Resources
    • OpenAPI Spec
    • Mobile SDK
LogoLogo
Get supportRequest a Demo
API ReferenceWebhooks

GET
/api/v3/webhook/logs
GET
/api/v3/webhook/logs
1curl https://app.impiloplatform.com/api/v3/webhook/logs \
2 -H "Impilo-API-Key: <Impilo-API-Key>"
Try it
200listWebhookLogsExample
1{
2 "content": [
3 {
4 "webhookType": "device.healthcheck"
5 }
6 ],
7 "first": true,
8 "last": true,
9 "page": 42,
10 "size": 42,
11 "total": 42
12}
Was this page helpful?
Previous

List Webhooks

Next
Built with
Retrieves a paginated list of webhook logs that record historical attempts to send webhook payloads to a customer's servers. This endpoint allows filtering logs based on webhook type, creation timestamp range, retry attempts range, last response status, last retry timestamp range, and pagination settings. It is useful for auditing and debugging purposes.
List Webhook Logs

Authentication

Impilo-API-Keystring
API Key authentication via header

Query Parameters

webhookTypeenumOptional
The webhook type
retryAttemptsMinintegerOptional
The minimum retry attempts
retryAttemptsMaxintegerOptional
The maximum retry attempts
lastResponseStatusintegerOptional
The last response status
startLastRetryTimestampstringOptionalformat: "date-time"
The minimum last retry timestamp
endLastRetryTimestampstringOptionalformat: "date-time"
The maximum last retry timestamp
startTimestampstringOptionalformat: "date-time"
The minimum timestamp
endTimestampstringOptionalformat: "date-time"
The maximum timestamp (exclusive)
pageintegerOptional
The number of the page to retrieve (1 based)
sizeintegerOptional
The number of items per page

Response

OK
contentlist of objects or null
The content of the page, consisting of a list of objects.
firstboolean or null
True if this is the first page, false otherwise.
lastboolean or null
True if this is the last page, false otherwise.
pageinteger or null
The current page number. The first page has value 1.
sizeinteger or null
The current page size. Default 15, maximum 250.
totalinteger or null
The number of objects matching the request.
The maximum retry attempts
The last response status
The minimum last retry timestamp
The maximum last retry timestamp
The minimum timestamp
The number of items per page
OK

The maximum timestamp (exclusive)

The number of the page to retrieve (1 based)