diff --git a/client/src/app/api/rest.ts b/client/src/app/api/rest.ts index 99f3ec519..80f313204 100644 --- a/client/src/app/api/rest.ts +++ b/client/src/app/api/rest.ts @@ -365,9 +365,10 @@ export function getTasksByIds( const isYaml = format === "yaml"; const headers = isYaml ? { ...yamlHeaders } : { ...jsonHeaders }; const responseType = isYaml ? "text" : "json"; + const filterParam = `id:(${ids.join("|")})`; return axios - .post(`${TASKS}/multiple`, ids, { + .get(`${TASKS}`, { headers: headers, responseType: responseType, })