Reports

Cancellations and no-shows report (v2)

Returns the cancellations and no-shows totals as a JSON-native object — one bucket each for cancelled baskets, no-show baskets, and a combined total. Money fields are integers in the site's minor units (e.g. pence for GBP).

Prefer this endpoint over /shop/reports/cancellations-and-no-shows when integrating with a system rather than rendering a table.

get/shop/reports/cancellations-and-no-shows-v2

Query parameters

site_idstring uuid required

Restrict the report to baskets at the given site. Required.

revenue_date_fromstring date required
Example:2026-06-01

Restrict to baskets with a revenue date on or after this date.

revenue_date_tostring date required
Example:2026-06-30

Restrict to baskets with a revenue date on or before this date.

Response

The report was successfully generated.

Example response

{
  "cancelled": {
    "name": "Cancelled",
    "count": 12,
    "total_net": 90000,
    "total_gross": 108000
  },
  "no_shows": {
    "name": "Cancelled",
    "count": 12,
    "total_net": 90000,
    "total_gross": 108000
  },
  "total": {
    "name": "Cancelled",
    "count": 12,
    "total_net": 90000,
    "total_gross": 108000
  }
}

Changes

No recorded changes to this endpoint across all 1 revision of this API.