Skip to main content
DELETE
/
notification-settings
/
{notification_setting_id}
Delete a notification setting
const options = {method: 'DELETE', headers: {Authorization: 'Bearer <token>'}};

fetch('https://api.paddle.com/notification-settings/{notification_setting_id}', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
{
  "error": {
    "type": "request_error",
    "code": "<string>",
    "detail": "<string>",
    "documentation_url": "<string>",
    "errors": [
      {
        "field": "<string>",
        "message": "<string>"
      }
    ]
  },
  "meta": {
    "request_id": "<string>"
  }
}

Authorizations

Authorization
string
header
required

Requests are authenticated with API keys. Provide your API key as a Bearer token in the Authorization header.

API keys are assigned permissions, granting them access to entities and operations. Each endpoint may require one or more permissions, defined with the x-permissions extension. Values for include parameters may require specific permissions as defined in the x-enum-permissions extension. See all available permissions in the permission schema or documentation.

Get an API key and select the permissions you need from the Paddle dashboard under Paddle > Developer Tools > Authentication.

Path Parameters

notification_setting_id
string
required

Paddle ID of the notification setting entity (notification destination) to work with.

Example:

"ntfset_01gt21c5pdx9q1e4mh1xrsjjn6"

Response

No Content