Edits history of script submission #20442 for ' Attach File or URL to Comment (smartsheet)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Smartsheet = {
      token: string;
      baseUrl: string;
    };
    /**
     * Attach File or URL to Comment
     * Attaches a file to the comment.
     */
    export async function main(
      auth: Smartsheet,
      sheetId: string,
      commentId: string,
      body: {
        attachmentSubType?:
          | "DOCUMENT"
          | "DRAWING"
          | "FOLDER"
          | "PDF"
          | "PRESENTATION"
          | "SPREADSHEET";
        attachmentType?:
          | "BOX_COM"
          | "DROPBOX"
          | "EGNYTE"
          | "EVERNOTE"
          | "FILE"
          | "GOOGLE_DRIVE"
          | "LINK"
          | "ONEDRIVE"
          | "TRELLO";
        description?: string;
        name?: string;
        url?: string;
      },
    ) {
      const url = new URL(
        `${auth.baseUrl}/sheets/${sheetId}/comments/${commentId}/attachments`,
      );
    
      const formData = new FormData();
      for (const [k, v] of Object.entries(body)) {
        if (v !== undefined && v !== "") {
          formData.append(k, String(v));
        }
      }
      const response = await fetch(url, {
        method: "POST",
        headers: {
          "Content-Type": "application/json",
          Authorization: "Bearer " + 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