Edits history of script submission #14342 for ' Create group (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Create group
     * Creates a new group of users in an enterprise. Only users with admin
    permissions can create new groups.
     */
    export async function main(
      auth: Box,
      fields: string | undefined,
      body: {
        name: string;
        provenance?: string;
        external_sync_identifier?: string;
        description?: string;
        invitability_level?:
          | "admins_only"
          | "admins_and_members"
          | "all_managed_users";
        member_viewability_level?:
          | "admins_only"
          | "admins_and_members"
          | "all_managed_users";
      },
    ) {
      const url = new URL(`https://api.box.com/2.0/groups`);
      for (const [k, v] of [["fields", fields]]) {
        if (v !== undefined && v !== "" && k !== undefined) {
          url.searchParams.append(k, 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