action meilisearch_get_all_tasks { label: "Get all tasks" description: "Get all tasks" provider: meilisearch method: GET path: "/tasks" 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 } }