# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.skeddly.com/resources/projects/deleteprojectnotification-method.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
