Edits history of script submission #14349 for ' Create metadata template (box)'

  • bun
    One script reply has been approved by the moderators
    Ap­pro­ved
    //native
    type Box = {
      token: string;
    };
    /**
     * Create metadata template
     * Creates a new metadata template that can be applied to
    files and folders.
     */
    export async function main(
      auth: Box,
      body: {
        scope: string;
        templateKey?: string;
        displayName: string;
        hidden?: false | true;
        fields?: {
          type: "string" | "float" | "date" | "enum" | "multiSelect";
          key: string;
          displayName: string;
          description?: string;
          hidden?: false | true;
          options?: { key: string }[];
        }[];
        copyInstanceOnItemCopy?: false | true;
      },
    ) {
      const url = new URL(`https://api.box.com/2.0/metadata_templates/schema`);
    
      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