Skip to contents

Retrieves the JavaScript code (and associated metadata) of an existing stream or transaction filter.

Usage

mc_get_filter_code(conn, filter)

Arguments

conn

A connection object created by mc_connect.

filter

Character string. Filter name or transaction ID.

Value

A list containing the filter's code and details.

Examples

if (FALSE) { # \dontrun{
code_info <- mc_get_filter_code(conn, "myfilter")
print(code_info$code)
} # }