Skip to main content

@wildix/wda-insights-client > ListFiltersCommand

ListFiltersCommand class

Signature:

export declare class ListFiltersCommand extends ListFiltersCommand_base 

Extends: ListFiltersCommand_base

Example

Use a bare-bones client and the command you need to make an API call.

import { WdaInsightsClient, ListFiltersCommand } from "@wildix/wda-insights-client"; // ES Modules import
// const { WdaInsightsClient, ListFiltersCommand } = require("@wildix/wda-insights-client"); // CommonJS import
const client = new WdaInsightsClient(config);
const input = {};
const command = new ListFiltersCommand(input);
const response = await client.send(command);
// { // ListFiltersOutput
// filters: [ // ListFiltersItemsList // required
// { // ListFiltersItem
// id: "STRING_VALUE", // required
// name: "STRING_VALUE", // required
// body: "STRING_VALUE", // required
// createdAt: "STRING_VALUE", // required
// updatedAt: "STRING_VALUE", // required
// },
// ],
// };