---
title: "How do I remove a notification from a subscription, or unsubscribe completely?"
slug: "how-do-i-remove-a-notification-from-a-subscription-or-unsubscribe-completely"
updated: 2025-04-17T11:49:08Z
published: 2025-04-17T11:49:08Z
canonical: "support.lusid.com/how-do-i-remove-a-notification-from-a-subscription-or-unsubscribe-completely"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://support.lusid.com/llms.txt
> Use this file to discover all available pages before exploring further.

# How do I remove a notification from a subscription, or unsubscribe completely?

Providing you are a LUSID user with sufficient privileges, you can remove a notification from a [subscription](/v1/docs/how-do-i-subscribe-to-an-event).

Alternatively, you can unsubscribe completely, which has the effect of deleting the subscription and all the notifications (whether [email](/v1/docs/how-do-i-notify-people-via-email-when-an-event-occurs), [SMS](/v1/docs/how-do-i-notify-people-via-sms-when-an-event-occurs), [webhook](/v1/docs/how-do-i-create-a-webhook-to-call-a-lusid-api-when-an-event-occurs) or [AWS SQS](/v1/docs/how-do-i-send-an-amazon-simple-queue-service-sqs-notification-when-an-event-occurs)) attached to it at the same time.

## Using the LUSID web app

To remove a notification or unsubscribe from an event completely using the [LUSID web app](https://www.lusid.com/app/home):

1. From the top left menu in the LUSID web app, navigate to **Notifications Management > Subscriptions**. ![](https://cdn.document360.io/d575ad81-c0ed-4980-bbd1-d59ac5c3de82/Images/Documentation/image(750).png)
2. 
  - To delete a notification from a subscription, expand the subscription and click the **Delete** icon. ![](https://cdn.document360.io/d575ad81-c0ed-4980-bbd1-d59ac5c3de82/Images/Documentation/image(751).png)
  - To unsubscribe from an event, click the **Menu** icon > **Delete** on the row of the subscription you want to remove. ![](https://cdn.document360.io/d575ad81-c0ed-4980-bbd1-d59ac5c3de82/Images/Documentation/image(752).png)

## Using the Notification REST API

To perform either operation, first [obtain an API access token](/v1/docs/how-do-i-obtain-and-use-a-short-lived-api-access-token-from-okta):

- To remove a notification from a subscription, call the [DeleteNotification](https://www.lusid.com/docs/api/notification/endpoints/notifications/DeleteNotification) API, passing in your API access token, the `scope` and `code` of the subscription, and the `id` of the notification (you can find this out by calling the [ListNotifications](https://www.lusid.com/docs/api/notification/endpoints/notifications/ListNotifications) API for the subscription).
- To unsubscribe completely, call the [DeleteSubscription](https://www.lusid.com/docs/api/notification/endpoints/subscriptions/DeleteSubscription) API, passing in your API access token and the `scope` and `code` of the subscription.

Note both these DELETE APIs return `204 No Content` upon success.
