---
title: "Update an IntakeFormSection"
method: PUT
path: "/shop/intake-form-sections/{intakeFormSectionId}"
tags: ["IntakeForms"]
---

# Update an IntakeFormSection

`PUT /shop/intake-form-sections/{intakeFormSectionId}`

Use this endpoint to update an `IntakeFormSection`.

## Request body

- object
  - `description` string — Admin-facing description of what this intake form section captures. Visible in the questionnaire builder but not shown to customers.
  - `intro_text` string, nullable — Optional rich-text shown to the customer at the top of the section. Markdown is rendered.
  - `offerings` OfferingIdentifier[] — Offerings this intake form section is attached to.
    - `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.
  - `order` integer — Zero-based display order of this section relative to others on the same form. Lower values appear first.
  - `outro_text` string, nullable — Optional rich-text shown to the customer at the foot of the section, after the questions.
  - `title` string — Customer-facing heading for the section. Plain text only — HTML tags are stripped.
  - `type` 'mandatory', nullable — Optional category flag. `mandatory` marks the section as non-skippable in the intake flow — the customer must complete it before checkout. Null (the default) makes the section advisory.

## Response `200`

Successfully updated an `IntakeFormSection`.

- 201ContentApplication1jsonSchema — unresolved $ref

## Other responses

- `401` — The user is unauthenticated
- `403` — The authenticated user does not have permission.
- `404` — The resource couldn't be found
- `422` — The request didn't pass validation

---

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