Edits history of script submission #14693 for ' Create a Channel (clickup)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Clickup = {
      token: string;
    };
    /**
     * Create a Channel
     * This endpoint creates a new Channel not tied to a Space, Folder, or List. If a Channel with the specified name already exists it returns it.
     */
    export async function main(
      auth: Clickup,
      workspace_id: string,
      body: {
        description?: string;
        name: string;
        topic?: string;
        user_ids?: string[];
        visibility?: "PUBLIC" | "PRIVATE";
      },
    ) {
      const url = new URL(
        `https://api.clickup.com/api/v3/workspaces/${workspace_id}/chat/channels`,
      );
    
      const response = await fetch(url, {
        method: "POST",
        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