Remove linkifiers

Remove linkifiers, regular expression patterns that are automatically linkified when they appear in messages and topics.

DELETE https://chat.convergenceservices.in/api/v1/realm/filters/<filter_id>

Usage examples

#!/usr/bin/env python3

import zulip

# Pass the path to your zuliprc file here.
client = zulip.Client(config_file="~/zuliprc")

# Remove the organization filter with ID 42
result = client.remove_realm_filter(42)
print(result)

curl -X DELETE https://chat.convergenceservices.in/api/v1/realm/filters/<filter_id> \
    -u BOT_EMAIL_ADDRESS:BOT_API_KEY

Arguments

Argument Example Required Description
filter_id 42 Yes

The ID of the filter that you want to remove.

Response

Example response

A typical successful JSON response may look like:

{
    "msg": "",
    "result": "success"
}