> For the complete documentation index, see [llms.txt](https://docs.skeddly.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.skeddly.com/resources/managed-services/deletemanagedservicesselector-method.md).

# DeleteManagedServicesSelector Method

## Description

Deletes a Managed Services Selector.

## HTTP Request

`DELETE https://api.skeddly.com/api/ManagedServices/Plans/<planId>/Selectors/<selectorId>`

## URL Parameters

### planId

ID of the Managed Services Plan to that contains the selector to delete.

Type: `string`

Required: Yes

### selectorId

ID of the Managed Services Selector to delete.

Type: `string`

Required: Yes

## Sample Request

{% tabs %}
{% tab title="HTTP" %}

```http
DELETE /api/ManagedServices/Plans/plan-00000001/Selectors/selector-00000001 HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
```

{% endtab %}

{% tab title="Bash" %}

```bash
curl -X DELETE "https://api.skeddly.com/api/ManagedServices/Plans/plan-00000001/Selectors/selector-00000001" \
  -H "Authorization: AccessKey <api key>"as
```

{% endtab %}
{% endtabs %}
