//native
type Clickup = {
token: string;
};
/**
* Update a Channel
* This endpoint updates a single Channel.
*/
export async function main(
auth: Clickup,
workspace_id: string,
channel_id: string,
body: {
content_format?: "text/md" | "text/plain";
description?: string;
location?: { id: string; type: "folder" | "list" | "space" };
name?: string;
topic?: string;
visibility?: "PUBLIC" | "PRIVATE";
},
) {
const url = new URL(
`https://api.clickup.com/api/v3/workspaces/${workspace_id}/chat/channels/${channel_id}`,
);
const response = await fetch(url, {
method: "PATCH",
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