Edits history of script submission #14560 for ' Update terms of service (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Update terms of service
     * Updates a specific terms of service.
     */
    export async function main(
      auth: Box,
      terms_of_service_id: string,
      body: { status: "enabled" | "disabled"; text: string },
    ) {
      const url = new URL(
        `https://api.box.com/2.0/terms_of_services/${terms_of_service_id}`,
      );
    
      const response = await fetch(url, {
        method: "PUT",
        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