Edits history of script submission #14358 for ' Create terms of service status for new user (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Create terms of service status for new user
     * Sets the status for a terms of service for a user.
     */
    export async function main(
      auth: Box,
      body: {
        tos: { type: "terms_of_service"; id: string };
        user: { type: "user"; id: string };
        is_accepted: false | true;
      },
    ) {
      const url = new URL(`https://api.box.com/2.0/terms_of_service_user_statuses`);
    
      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