# Delete notification integration

Deletes a notification integration

Required permission: Account > Team > Notifications > Manage

**Path parameters:**

{object}
- `notificationId`: (string) (required) ID of the notification integration

**Response body:**

{object}
- `data`: {object}

## API reference

DELETE /v1/integrations/notifications/{notificationId}

DELETE /v1/teams/{teamId}/integrations/notifications/{notificationId}

### Example Response

200 OK: The operation was performed successfully.

```json
{
  "data": {}
}
```

## CLI reference

$ northflank delete notification

Options:

- `--notificationId <notificationId>`: ID of the notification integration

- `--verbose `: Verbose output

- `--quiet `: No console output

- `--force `: Don't ask for confirmation

- `-o --output <format>`: Output formatting 

### Example Response

 The operation was performed successfully.

```json
{}
```

## JavaScript client reference

### Example request



```javascript
await apiClient.delete.notification({
  parameters: {
    "notificationId": "example-notification-id"
  }    
});
```

### Example Response

 The operation was performed successfully.

```json
{
  "data": {},
  "rawResponse": "...",
  "request": "...",
  "error": "..."
}
```

Previous: [Update notification integration](/docs/v1/api//team/integrations/update-notification-integration)

Next: [List registries](/docs/v1/api//team/integrations/list-registries)