> Portal Navigation:
> 
> - Append `.md` to any URL under `https://dev.wix.com/docs/` to get its markdown version.
> - Pages are either content pages (article or reference text) or menu pages (a list of links to child pages).
> - To get a menu page, truncate any URL to a parent path and append `.md` (e.g. `https://dev.wix.com/docs/sdk.md`, `https://dev.wix.com/docs/sdk/core-modules.md`).
> - Top-level index of all portals: https://dev.wix.com/docs/llms.txt
> - Full concatenated docs: https://dev.wix.com/docs/llms-full.txt

# Package: onlinePrograms

# Namespace: sections

# Webhook link: https://dev.wix.com/docs/api-reference/business-management/online-programs/sections/section-deleted.md

# Webhook Permissions Scopes IDs:
Manage Online Programs: SCOPE.CHALLENGES.MANAGE

## Introduction

Triggered when a section is deleted.

---

## REST API

### Schema

```
Webhook: Section Deleted
Description: Triggered when a section is deleted.
Event body:
 - name: id | type: string | description: Unique event ID. Allows clients to ignore duplicate events.
 - name: entityFqdn | type: string | description: Fully qualified domain name of the entity associated with the event.
 - name: slug | type: string | description: Event name.
 - name: entityId | type: string | description: ID of the entity associated with the event.
 - name: eventTime | type: string (date-time) | description: Event timestamp.
 - name: triggeredByAnonymizeRequest | type: boolean | description: Whether the event was triggered as a result of a privacy regulation application such as GDPR.
 - name: originatedFrom | type: string | description: If present, indicates the action that triggered the event.

```

### Examples


```curl
{
  "id": "31398687-c308-4112-91a9-52dbb4ebb6ae",
  "entityFqdn": "wix.online_programs.v3.section",
  "slug": "deleted",
  "entityId": "0e4f52ac-142b-40fd-b87c-16a832979442",
  "deletedEvent": {
    "movedToTrash": true,
    "deletedEntity": {
      "id": "0e4f52ac-142b-40fd-b87c-16a832979442",
      "revision": "2",
      "createdDate": "2026-09-17T11:52:21.563Z",
      "updatedDate": "2026-09-17T11:52:24.075Z",
      "programId": "6ada68f1-9429-495c-b101-98f208f36c09",
      "description": {
        "title": "Getting Started"
      },
      "totalSteps": 0,
      "ordering": 10,
      "delayInDays": 0
    }
  },
  "eventTime": "2026-09-17T11:52:29.012029061Z",
  "triggeredByAnonymizeRequest": false,
  "entityEventSequence": "12"
}

```

---

## JavaScript SDK

### Schema

```
Webhook: onSectionDeleted
Description: Triggered when a section is deleted.
Payload: SectionDeletedEnvelope
  - name: entity | type: Section | description: none
     - name: _id | type: string | description: Section GUID.
     - name: revision | type: string | description: Revision number, which increments by 1 each time the section is updated. To prevent conflicting changes, the current `revision` must be passed when updating the section.
     - name: _createdDate | type: Date | description: Date and time the section was created.
     - name: _updatedDate | type: Date | description: Date and time the section was last updated.
     - name: programId | type: string | description: Program GUID of the parent program. Provide it when creating a section. After creation, this value can't be changed.
     - name: description | type: Description | description: Section title.
        - name: title | type: string | description: 
     - name: totalSteps | type: integer | description: Total number of steps in the section.
     - name: ordering | type: number | description: Position rank used to order sections within a program. To reorder sections, call Move Section.
     - name: delayInDays | type: integer | description: Number of days before the section becomes available. The count starts from the program's start date for scheduled programs, or from the participant's enrollment date for self-paced ones. Someone joining a scheduled program after it began may find several sections already open. Use `0` for a section available from the start.
     - name: extendedFields | type: ExtendedFields | description: Custom field data for the section. [Extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md) must be configured in the app dashboard before they can be accessed with API calls.
        - name: namespaces | type: object | description: Extended field data. Each key corresponds to the namespace of the app that created the extended fields. The value of each key is structured according to the schema defined when the extended fields were configured.  You can only access fields for which you have the appropriate permissions.  Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields.md).
  - name: metadata | type: EventMetadata | description: none
     - name: instanceId | type: string | description: App instance GUID.
     - name: eventType | type: string | description: Event type.
     - name: identity | type: IdentificationData | description: The identification type and identity data.
        - ONE-OF:
           - name: anonymousVisitorId | type: string | description: GUID of a site visitor that has not logged in to the site.
           - name: memberId | type: string | description: GUID of a site visitor that has logged in to the site.
           - name: wixUserId | type: string | description: GUID of a Wix user (site owner, contributor, etc.).
           - name: appId | type: string | description: GUID of an app.
        - name: identityType | type: WebhookIdentityType | description: 
             - enum: UNKNOWN, ANONYMOUS_VISITOR, MEMBER, WIX_USER, APP
     - name: accountInfo | type: AccountInfo | description: Details related to the account
        - name: accountId | type: string | description: GUID of the Wix account associated with the event.
        - name: parentAccountId | type: string | description: GUID of the parent Wix account. Only included when accountId belongs to a child account.
        - name: siteId | type: string | description: GUID of the Wix site associated with the event. Only included when the event is tied to a specific site.
     - name: _id | type: string | description: Event GUID. With this GUID you can easily spot duplicated events and ignore them.
     - name: entityFqdn | type: string | description: Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities. For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.
     - name: slug | type: string | description: Event action name, placed at the top level to make it easier for users to dispatch messages. For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.
     - name: entityId | type: string | description: GUID of the entity associated with the event.
     - name: eventTime | type: Date | description: Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`.
     - name: triggeredByAnonymizeRequest | type: boolean | description: Whether the event was triggered as a result of a privacy regulation application (for example, GDPR).
     - name: originatedFrom | type: string | description: If present, indicates the action that triggered the event.
     - name: entityEventSequence | type: string | description: A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at `16:00` and then again at `16:01`, the second update will always have a higher sequence number. You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.

```

### Examples


```javascript
import { sections } from '@wix/online-programs';

sections.onSectionDeleted((event) => {
    // handle your event here
});
```


```javascript
import { createClient, AppStrategy } from '@wix/sdk';
import { sections } from '@wix/online-programs';

const wixClient = createClient({
  auth: AppStrategy({
    appId: 'MY-APP-ID',
    publicKey: 'YOUR_APP_PUBLIC_KEY',
  }),
  modules: {
      sections,
    },
});

wixClient.sections.onSectionDeleted((event) => {
    // handle your event here
});
```

---