Delete subscription filter

delete/v0/subscriptions/{subscriptionId}/filters/{filterId}
Page View

Filters endpoints allow you to review or manage filters. You can define a filter with multiple rules for asynchronous messages. You may have one filter defined per subscription. Learn about filters.

You can retrieve, create, update, or delete filters.

Delete subscription filter

Delete an existing filter from the subscription you specify in the request.

Request parameters and payload

cURL request example

bash
1
curl 'https://api.redoxengine.com/platform/v0/subscriptions/{subscriptionId}/filters/{filterId}' \
2
--request DELETE \
3
--header 'Authorization: Bearer $API_TOKEN' \
4
--header 'accept: application/json'

Response fields and example

Example payload generated from schema
1
{
2
"message": "Successfully removed filter from subscription",
3
"filterId": "e049f44d-99b2-4790-b4c6-19c0c21d1234",
4
"subscriptionId": "66426"
5
}
  • message
    string

    Contains an informative message that the filter was deleted.

  • filterId
    string

    Contains the ID of the filter that was deleted.

    Format: uuid
  • subscriptionId
    string

    Contains the ID of the subscription that the filter was deleted from.