action meilisearch_cancel_tasks { label: "Cancel tasks" description: "Cancel tasks" provider: meilisearch method: POST path: "/tasks/cancel" encoding: json input: { type: "object" properties: { afterEnqueuedAt: { type: "string" } afterFinishedAt: { type: "string" } afterStartedAt: { type: "string" } beforeEnqueuedAt: { type: "string" } beforeFinishedAt: { type: "string" } beforeStartedAt: { type: "string" } canceledBy: { type: "string" } from: { type: "string" } indexUids: { type: "string" } limit: { type: "string" } statuses: { type: "string" } types: { type: "string" } uids: { type: "string" } } additionalProperties: false } output: { type: "object" additionalProperties: true } }