> 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

# DeleteResolvedStep

# Package: onlinePrograms

# Namespace: ResolvedStepsService

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

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

## Introduction

Deletes a resolved step by ID.

Resolved steps are also deleted automatically when participants leave programs or when program steps are deleted.

---

## REST API

### Schema

```
 Method: deleteResolvedStep
 Description: Deletes a resolved step by GUID.  Resolved steps are also deleted automatically when participants leave programs or when program steps are deleted.
 URL: https://www.wixapis.com/online-programs/participants/v3/resolved-steps/{resolvedStepId}
 Method: DELETE
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  resolvedStepId
 Method parameters: 
   param name: resolvedStepId | type:   none | required: true 
 Return type: DeleteResolvedStepResponse
  EMPTY-OBJECT {}

 Possible Errors:
   HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: PARTICIPANT_NOT_FOUND | Description: Couldn't find the participant. See [Errors](https://dev.wix.com/docs/api-reference/business-management/online-programs/resolved-steps/errors.md) for troubleshooting.
   HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: RESOLVED_STEP_NOT_FOUND | Description: Couldn't find the resolved step. See [Errors](https://dev.wix.com/docs/api-reference/business-management/online-programs/resolved-steps/errors.md) for troubleshooting.
   HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: PARTICIPANT_NOT_JOINED | Description: The participant hasn't joined the program that contains the resolved step. See [Errors](https://dev.wix.com/docs/api-reference/business-management/online-programs/resolved-steps/errors.md) for troubleshooting.


```

### Examples

### Delete a resolved step
Deletes a specific resolved step by ID

```curl
curl -X DELETE \
'https://www.wixapis.com/online-programs/participants/v3/resolved-steps/fd91c2d0-a4f8-4552-8950-cb36fb1ae419' \
-H 'Authorization: <AUTH>'
```

---

## JavaScript SDK

### Schema

```
 Method: wixClientAdmin.onlinePrograms.resolvedSteps.deleteResolvedStep(resolvedStepId)
 Description: Deletes a resolved step by GUID.  Resolved steps are also deleted automatically when participants leave programs or when program steps are deleted.
 # Note: If the parameter `a.b` is listed under required parameters, `b` is only required if `a` is also present.
 Required parameters:  resolvedStepId
 Method parameters: 
   param name: resolvedStepId | type: string | description: Resolved step GUID. | required: true | validation: format GUID
 Return type: PROMISE<DeleteResolvedStepResponse>
  EMPTY-OBJECT {}

 Possible Errors:
   HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: PARTICIPANT_NOT_FOUND | Description: Couldn't find the participant. See [Errors](https://dev.wix.com/docs/api-reference/business-management/online-programs/resolved-steps/errors.md) for troubleshooting.
   HTTP Code: 404 | Status Code: NOT_FOUND | Application Code: RESOLVED_STEP_NOT_FOUND | Description: Couldn't find the resolved step. See [Errors](https://dev.wix.com/docs/api-reference/business-management/online-programs/resolved-steps/errors.md) for troubleshooting.
   HTTP Code: 428 | Status Code: FAILED_PRECONDITION | Application Code: PARTICIPANT_NOT_JOINED | Description: The participant hasn't joined the program that contains the resolved step. See [Errors](https://dev.wix.com/docs/api-reference/business-management/online-programs/resolved-steps/errors.md) for troubleshooting.


```

### Examples

### Delete a resolved step
```javascript
import { resolvedSteps } from "@wix/online-programs";

async function deleteResolvedStep() {
  await resolvedSteps.deleteResolvedStep(
    "fd91c2d0-a4f8-4552-8950-cb36fb1ae419",
  );
}

```

### deleteResolvedStep (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 { resolvedSteps } from '@wix/online-programs';
// Import the auth strategy for the relevant access type
// Import the relevant host module if needed

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


async function deleteResolvedStep(resolvedStepId) {
  const response = await myWixClient.resolvedSteps.deleteResolvedStep(resolvedStepId);
};
```

---