//native
type Clickup = {
token: string;
};
/**
* Get Bulk Tasks' Time in Status
* View how long two or more tasks have been in each status. The Total time in Status ClickApp must first be enabled by the Workspace owner or an admin.
*/
export async function main(
auth: Clickup,
task_ids: string | undefined,
custom_task_ids: string | undefined,
team_id: string | undefined,
Content_Type: string,
) {
const url = new URL(
`https://api.clickup.com/api/v2/task/bulk_time_in_status/task_ids`,
);
for (const [k, v] of [
["task_ids", task_ids],
["custom_task_ids", custom_task_ids],
["team_id", team_id],
]) {
if (v !== undefined && v !== "" && k !== undefined) {
url.searchParams.append(k, v);
}
}
const response = await fetch(url, {
method: "GET",
headers: {
"Content-Type": Content_Type,
Authorization: auth.token,
},
body: undefined,
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago