Edits history of script submission #14350 for ' Create retention policy (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Create retention policy
     * Creates a retention policy.
     */
    export async function main(
      auth: Box,
      body: {
        policy_name: string;
        description?: string;
        policy_type: "finite" | "indefinite";
        disposition_action: "permanently_delete" | "remove_retention";
        retention_length?: string | number;
        retention_type?: "modifiable" | "non_modifiable";
        can_owner_extend_retention?: false | true;
        are_owners_notified?: false | true;
        custom_notification_recipients?: { id: string; type: "user" } & {
          name?: string;
          login?: string;
        }[];
      },
    ) {
      const url = new URL(`https://api.box.com/2.0/retention_policies`);
    
      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