---
title: "List service charge items"
method: GET
path: "/shop/reports/service-charge-items"
tags: ["Reports"]
---

# List service charge items

`GET /shop/reports/service-charge-items`

Use this endpoint to retrieve a paginated list of basket items with their service charge amounts.

## Query parameters

- `site_id` string, uuid
- `page` integer
- `offering_type` string[]
- `offering_id` string[]
- `offering_category` string
- `sold_by_id` string[]
- `order_status` string
- `status` string
- `date_from` string, date
- `date_to` string, date
- `revenue_date_from` string, date
- `revenue_date_to` string, date
- `order_submitted_at_from` string, date-time
- `order_submitted_at_to` string, date-time
- `order_label` string[]
- `item_date_from` string, date
- `item_date_to` string, date
- `practitioner_id` string[]
- `room_id` string[]
- `zone_id` string[]

## Response `200`

The list of items was successfully retrieved

- ListServiceChargeItemsResponse
  - `data` ServiceChargeItem[], required
    - `id` string, object-id, required — The ID of the basket item.
    - `basket_id` string, object-id, required — The ID of the basket this item belongs to.
    - `order_ref` string, required — The order ref of the basket this item belongs to.
    - `order_status` string, required — The status of the basket this item belongs to.
    - `revenue_date` string, date, nullable, required — The revenue date of the basket this item belongs to.
    - `item_date` string, date, nullable, required — The date of this item. If the item is a booking this will be the date it takes place.
    - `quantity` integer, required — The quantity of this item. This is 1 in the majority of cases.
    - `offering_id` string, object-id, required — The ID of the offering this item is for.
    - `offering_type` string, required — The type of offering this item is for.
    - `offering_name` string, required — The name of the offering this item is for.
    - `total_cost` integer, nullable — The total cost of the item, in minor units.
    - `net_total` integer, nullable — The net total of the item, in minor units.
    - `service_charge` integer, nullable — The amount of service charge associated with the item.
    - `sold_by` SoldBy
      - `id` string, required
      - `name` string, required
      - `type` 'practitioner' | 'user' | '', required
    - `practitioner` PractitionerSummary — The summary of a `Practitioner` object
      - `id` string, object-id, required — The ID of the practitioner.
      - `name` string, required — The full name of the practitioner.
    - `start_time` string, date-time, nullable — The date and time this item's booking starts.
    - `sales_channel` string, nullable — The sales channel of the order.
    - `payment_methods` string, nullable — A comma-separated list of payment methods used for this item's basket.
    - `created_at` string, date-time, required — The date and time this item was created.
  - `meta` PaginationMeta, required — Counts and positional information for the current page of a list response. Use `current_page` and `last_page` to drive pagination UI, `total` for result counts, and `per_page` to confirm the page size the server actually applied (which may differ from the requested value when capped).
    - `from` integer, required — The item number from which this results set starts from
    - `to` integer, required — The item number from which this results set ends at
    - `total` integer, required — The total number of results
    - `current_page` integer, required — The current page number
    - `last_page` integer, required — The page number of the last result set
    - `per_page` integer, required — The number of results per page
    - `path` string, required — The path of this api request
  - `links` PaginationLinks, required — Hypermedia navigation links for paging through a list response. Each property is a fully-qualified URL that preserves the original query string (filters, sort, page size) and only swaps the `page` parameter. `next` and `prev` are `null` at the ends of the result set; `first` and `last` are always present.
    - `first` string, required — The url of the first page for the paginated results set
    - `next` string, nullable, required — The url of the next page for the paginated results set
    - `prev` string, nullable, required — The url of the previous page for the paginated results set
    - `last` string, required — The url of the last page for the paginated results set
  - `totals` ServiceChargeItemTotals, required
    - `service_charge_total` integer — The total of all service charge amounts for the matching items.
    - `total_unique_orders` integer — The number of orders matching the given filters.
    - `total_items` integer — The total number of basket items matching the given filters.

## Other responses

- `401` — The user is unauthenticated

---

[API](https://skmtc.dev/try/apis/trybe-api.md) · [All operations](https://skmtc.dev/try/apis/trybe-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/try/trybe-api/revisions/f37f92702da5/schema)
