Edits history of script submission #14344 for ' Create jobs to terminate users session (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Create jobs to terminate users session
     * Validates the roles and permissions of the user,
    and creates asynchronous jobs
    to terminate the user's sessions.
    Returns the status for the POST request.
     */
    export async function main(
      auth: Box,
      body: { user_ids: string[]; user_logins: string[] },
    ) {
      const url = new URL(`https://api.box.com/2.0/users/terminate_sessions`);
    
      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