---
title: "Show OfferingSet"
method: GET
path: "/shop/offering-sets/{offeringSetId}"
tags: ["OfferingSets"]
---

# Show OfferingSet

`GET /shop/offering-sets/{offeringSetId}`

Use this endpoint to retrieve a single `OfferingSet`.

## Response `200`

The `OfferingSet` was successfully retrieved.

- object
  - `data` OfferingSet, required
    - `id` string, mongo-id, required — The ID of the offering set.
    - `name` string, required — The name of the offering set.
    - `offerings` OfferingIdentifier[], required — The offerings that belong to this set.
      - `offering_id` string, mongo-id, required — The ID of the offering.
      - `offering_name` string, required — The name of the offering.
      - `offering_type` 'appointment' | 'appointment_enquiry' | 'area_booking' | 'course' | 'hotel_room_reservation' | 'membership' | 'package' | 'product' | 'session' | 'table_reservation' | 'voucher', required — Discriminator describing what kind of sellable item an `Offering` represents. The value determines which downstream schema (`Appointment`, `Session`, `Package`, etc.) the offering's `offering_id` resolves against, and which checkout/booking flow applies.
    - `site_id` string, mongo-id, required — The ID of the site this offering set belongs to.
    - `organisation_id` string, mongo-id, required — The ID of the organisation this offering set belongs to.
    - `created_at` string, date-time, required
    - `updated_at` string, date-time, required

## Other responses

- `401` — The user is unauthenticated
- `404` — The resource couldn't be found

---

[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)
