Platform API

List webhook deliveries

Inspect recent webhook attempts and their delivery outcome.

GEThttps://app.mindbill.org/partner/v2/webhook-deliveries

Troubleshoot a missing event or verify that your webhook receiver acknowledged a lifecycle update.

AuthenticationBearer server API key
Permissions by credentialServer API key
IdempotencyNot required

This endpoint requires a server API key and is unavailable to browser sessions. See the component API inventory for exact paths and SDK methods.

Query parameters

FieldTypeDescription
cursor
string

Opaque cursor from the previous page.

limit
number

Maximum deliveries to return.

Examples

Inspect deliveries
curl "https://app.mindbill.org/partner/v2/webhook-deliveries?limit=50" \
  --header "Authorization: Bearer $MINDBILL_API_KEY"

Response

200 OK

Response
{
  "data": [{
    "eventId": "evt_01J6Z2",
    "status": "delivered",
    "responseStatus": 200,
    "attemptedAt": "2026-08-29T18:42:12.000Z"
  }],
  "nextCursor": null
}
FieldTypeDescription
data[]Required
object

Webhook attempt metadata, event identity, response status, and timestamps.

nextCursorRequired
string | null

Cursor for the next page.