> 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

# DeleteParticipant

# Package: onlinePrograms

# Namespace: ParticipantsService

# Method link: https://dev.wix.com/docs/api-reference/business-management/online-programs/participants/delete-participant.md

## Permission Scopes:
Manage Online Programs: SCOPE.CHALLENGES.MANAGE

## Introduction

Removes a participant from the program.

The member will lose access to program content but will remain in any associated social groups.

---

## REST API

### Schema

```
 Method: deleteParticipant
 Description: Removes a participant from the program.  The member will lose access to program content but will remain in any associated social groups.
 URL: https://www.wixapis.com/online-programs/v3/participants/{participantId}
 Method: DELETE
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  participantId
 Method parameters: 
   param name: participantId | type:   none | required: true 
 Return type: DeleteParticipantResponse
  EMPTY-OBJECT {}


```

### Examples

### Delete a participant
Removes a participant from a program

```curl
curl -X DELETE \
'https://www.wixapis.com/online-programs/participants/v3/participants/f5b74327-4e94-4d42-a214-03e7f1f805ef' \
-H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.onlinePrograms.participants.deleteParticipant(participantId)
 Description: Removes a participant from the program.  The member will lose access to program content but will remain in any associated social groups.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  participantId
 Method parameters: 
   param name: participantId | type: string | description: GUID of the participant to delete. | required: true | validation: format GUID
 Return type: PROMISE<DeleteParticipantResponse>
  EMPTY-OBJECT {}


```

### Examples

### Delete a participant
Removes a participant from a program.

```javascript
import { participants } from "@wix/online-programs";

async function deleteParticipant() {
  await participants.deleteParticipant("43db0e8d-4392-42d8-b3a6-56d412eb71e0");
}

```

### deleteParticipant (self-hosted)
Self-hosted SDK calls require you to [create a client](https://dev.wix.com/docs/sdk/articles/work-with-the-sdk/about-the-wix-client.md).

```javascript
import { createClient } from '@wix/sdk';
import { participants } from '@wix/online-programs';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

const myWixClient = createClient ({
  modules: { participants },
  // Include the auth strategy and host as relevant
});


async function deleteParticipant(participantId) {
  const response = await myWixClient.participants.deleteParticipant(participantId);
};
```

---