Platform API
List webhook deliveries
Inspect recent webhook attempts and their delivery outcome.
GET
https://app.mindbill.org/partner/v2/webhook-deliveriesTroubleshoot a missing event or verify that your webhook receiver acknowledged a lifecycle update.
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
cursorstringOpaque cursor from the previous page.
limitnumberMaximum deliveries to return.
Examples
curl "https://app.mindbill.org/partner/v2/webhook-deliveries?limit=50" \
--header "Authorization: Bearer $MINDBILL_API_KEY"Response
200 OK
{
"data": [{
"eventId": "evt_01J6Z2",
"status": "delivered",
"responseStatus": 200,
"attemptedAt": "2026-08-29T18:42:12.000Z"
}],
"nextCursor": null
}FieldTypeDescription
data[]RequiredobjectWebhook attempt metadata, event identity, response status, and timestamps.
nextCursorRequiredstring | nullCursor for the next page.