> 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/projects/deleteprojectnotification-method.md).

# DeleteProjectNotification Method

## Description

Deletes an existing project notification.

## HTTP Request

`DELETE https://api.skeddly.com/api/Projects/<projectId>/Notification/<notificationId>`

## URL Parameters

### notificationId

ID of the project notification.

Type: `string`

Required: Yes

### projectId

ID of the project.

Type: `string`

Required: Yes

## Body

The body is empty.

## Returns

A [Project](/data-types/project-object.md) object.

## Sample Request

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

```http
DELETE /api/Projects/proj-00000001/Notifications/pn-12345678 HTTP/1.1
Host: api.skeddly.com
Authorization: AccessKey <api key>
Content-Type: application/json
```

{% endtab %}

{% tab title="Bash" %}

```bash
curl -X DELETE "https://api.skeddly.com/api/Projects/proj-00000001/Notifications/pn-12345678" \
  -H "Authorization: AccessKey <api key>"
```

{% endtab %}
{% endtabs %}
