Remove a linkifier

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

DELETE https://chat.outreachy.org/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 linkifier (realm_filter) with ID 1
result = client.remove_realm_filter(1)
print(result)

curl -sSX DELETE https://chat.outreachy.org/api/v1/realm/filters/43 \
    -u BOT_EMAIL_ADDRESS:BOT_API_KEY

Parameters

filter_id integer required in path

Example: 43

The ID of the linkifier that you want to remove.


Response

Example response

A typical successful JSON response may look like:

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