Edits history of script submission #14362 for ' Create user exemption from collaboration domain restrictions (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Create user exemption from collaboration domain restrictions
     * Exempts a user from the restrictions set out by the allowed list of domains
    for collaborations.
     */
    export async function main(auth: Box, body: { user: { id: string } }) {
      const url = new URL(
        `https://api.box.com/2.0/collaboration_whitelist_exempt_targets`,
      );
    
      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