Edits history of script submission #3197 for ' Create an organization export request (asana)'

  • nativets
    One script reply has been approved by the moderators
    Ap­pro­ved
    type Asana = {
      token: string;
    };
    /**
     * Create an organization export request
     * This method creates a request to export an Organization. Asana will complete the export at some point after you create the request.
     */
    export async function main(
      auth: Asana,
      opt_pretty: string | undefined,
      opt_fields: string | undefined,
      limit: string | undefined,
      offset: string | undefined,
      body: {
        data?: { organization?: string; [k: string]: unknown };
        [k: string]: unknown;
      }
    ) {
      const url = new URL(`https://app.asana.com/api/1.0/organization_exports`);
      for (const [k, v] of [
        ["opt_pretty", opt_pretty],
        ["opt_fields", opt_fields],
        ["limit", limit],
        ["offset", offset],
      ]) {
        if (v !== undefined && v !== "") {
          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 383 days ago

  • nativets
    type Asana = {
      token: string;
    };
    /**
     * Create an organization export request
     * This method creates a request to export an Organization. Asana will complete the export at some point after you create the request.
     */
    export async function main(
      auth: Asana,
      opt_pretty: string | undefined,
      opt_fields: string | undefined,
      limit: string | undefined,
      offset: string | undefined,
      body: {
        data?: { organization?: string; [k: string]: unknown };
        [k: string]: unknown;
      }
    ) {
      const url = new URL(`https://app.asana.com/api/1.0/organization_exports`);
      for (const [k, v] of [
        ["opt_pretty", opt_pretty],
        ["opt_fields", opt_fields],
        ["limit", limit],
        ["offset", offset],
      ]) {
        if (v !== undefined && v !== "") {
          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 937 days ago