https://app.evoriqa.com/api/v1/reseller/stripe/webhook-logsList your Stripe webhook receipts
Returns the receipts your own (BYO) Stripe account delivered to the organization's reseller webhook — event id, type, duplicate-delivery flag and arrival time, newest first. Scoping is double-enforced against the organization and the BYO id namespace, so platform events (including the organization's own reseller-subscription ones) are never returned. List only: there is no v1 detail route — read a single payload from the dashboard. Reseller endpoints additionally require the key to live on the organization owner's own (primary) workspace — any other workspace returns 403.
Requires scope reseller:read
Access is gated — enable it before your first call
The API is off by default. A request succeeds only when all three switches are on: the platform master switch (off by default), your organisation’s API toggle, and your plan or client entitlement. Any one off returns 403 API access is not enabled for this workspace.
Parameters
| Name | In | Type | Required | Default | Description |
|---|---|---|---|---|---|
| q | query | string | Optional | — | Search over event id and event type. |
| type | query | string | Optional | — | Exact event type, e.g. invoice.paid. |
| start | query | string date | Optional | — | Start of the arrival window, YYYY-MM-DD. |
| end | query | string date | Optional | — | End of the arrival window, YYYY-MM-DD, inclusive. |
| skip | query | integer ≥ 0 | Optional | 0 | Offset pagination: rows to skip. |
| take | query | integer 1–200 | Optional | — | Offset pagination: rows to return. |
Request
curl "https://app.evoriqa.com/api/v1/reseller/stripe/webhook-logs" \
-H "x-api-key: $EVORIQA_API_KEY"const res = await fetch("https://app.evoriqa.com/api/v1/reseller/stripe/webhook-logs", {
headers: {
Authorization: `Bearer ${process.env.EVORIQA_API_KEY}`,
},
});
const responseBody = await res.json();import os
import requests
res = requests.get(
"https://app.evoriqa.com/api/v1/reseller/stripe/webhook-logs",
headers={"Authorization": f"Bearer {os.environ['EVORIQA_API_KEY']}"},
)
body = res.json()Response
{
"success": true,
"data": {
"logs": [
{
"id": "clw2n1c9k0001s60m1a2b3c4d",
"eventId": "evt_1P9xY2ABCdEfGhIj",
"type": "invoice.paid",
"duplicate": false,
"createdAt": "2026-09-01T09:14:22.000Z"
}
]
}
}