FiltersApi

interface FiltersApi

View and manage filters.

See also

Functions

Link copied to clipboard
abstract suspend fun createFilter(filter: FilterCreate): Filter

Creates a new Filter.

Link copied to clipboard
abstract suspend fun deleteFilter(filterId: String)

Deletes a Filter.

Link copied to clipboard
abstract suspend fun getFilter(filterId: String): Filter?

Gets a single Filter.

Link copied to clipboard
abstract suspend fun getFilters(): List<Filter>

Gets the list of filters set up on this account.

Link copied to clipboard
abstract suspend fun updateFilter(filter: FilterUpdate): Filter?

Updates an existing Filter.