action botify_get_saved_filters { label: "List all the project's saved filters (each filter's name, ID and filter value)" description: "List all the project's saved filters (each filter's name, ID and filter value)" provider: botify method: GET path: "/projects/{username}/{project_slug}/filters" encoding: json input: { type: "object" properties: { page: { type: "integer" } size: { type: "integer" } } additionalProperties: false } output: { type: "object" properties: { count: { type: "integer" } next: { type: "string" } page: { type: "integer" } previous: { type: "string" } results: { type: "array" items: { type: "object" required: ["name", "filters"] properties: { filters: { type: "object" } identifier: { type: "string" } name: { type: "string" } } } } size: { type: "integer" } } } }