OfferingSets

Update OfferingSet

Use this endpoint to update an OfferingSet.

put/shop/offering-sets/{offeringSetId}

Request body

namestring

Display name of the offering set, shown in the admin UI when picking a set to apply (e.g. as a coupon restriction or to scope a commission rate). Offering sets are reusable groupings of treatments, classes, or products. 1-120 characters.

Example request

{
  "name": "Massage treatments",
  "offerings": [
    {
      "offering_name": "Twilight massage",
      "offering_type": "appointment"
    }
  ]
}

Response

The OfferingSet was successfully retrieved.

Example response

{
  "data": {
    "name": "Massage treatments",
    "offerings": [
      {
        "offering_name": "Twilight massage",
        "offering_type": "appointment"
      }
    ]
  }
}

Changes