//native
type Clickup = {
token: string;
};
/**
* Edit Checklist Item
* Update an individual line item in a task checklist. \
\
You can rename it, set the assignee, mark it as resolved, or nest it under another checklist item.
*/
export async function main(
auth: Clickup,
checklist_id: string,
checklist_item_id: string,
body: {
name?: string;
assignee?: string;
resolved?: false | true;
parent?: string;
},
) {
const url = new URL(
`https://api.clickup.com/api/v2/checklist/${checklist_id}/checklist_item/${checklist_item_id}`,
);
const response = await fetch(url, {
method: "PUT",
headers: {
"Content-Type": "application/json",
Authorization: auth.token,
},
body: JSON.stringify(body),
});
if (!response.ok) {
const text = await response.text();
throw new Error(`${response.status} ${text}`);
}
return await response.json();
}
Submitted by hugo697 235 days ago