OrganizationExportsApi:
  createOrganizationExport: |-
    const AsanaPreview = require('asana-preview');
    
    let client = AsanaPreview.ApiClient.instance;
    let token = client.authentications['token'];
    token.accessToken = '<YOUR_ACCESS_TOKEN>';
    
    let organizationExportsApiInstance = new AsanaPreview.OrganizationExportsApi();
    let body = {"data": {"<PARAM_1>": "<VALUE_1>", "<PARAM_2>": "<VALUE_2>",}}; // Object | The organization to export.
    let opts = { 
        'opt_fields': "created_at,download_url,organization,organization.name,state"
    };
    organizationExportsApiInstance.createOrganizationExport(body, opts).then((result) => {
        console.log('API called successfully. Returned data: ' + JSON.stringify(result.data, null, 2));
    }, (error) => {
        console.error(error.response.body);
    });
    
  getOrganizationExport: |-
    const AsanaPreview = require('asana-preview');
    
    let client = AsanaPreview.ApiClient.instance;
    let token = client.authentications['token'];
    token.accessToken = '<YOUR_ACCESS_TOKEN>';
    
    let organizationExportsApiInstance = new AsanaPreview.OrganizationExportsApi();
    let organization_export_gid = "12345"; // String | Globally unique identifier for the organization export.
    let opts = { 
        'opt_fields': "created_at,download_url,organization,organization.name,state"
    };
    organizationExportsApiInstance.getOrganizationExport(organization_export_gid, opts).then((result) => {
        console.log('API called successfully. Returned data: ' + JSON.stringify(result.data, null, 2));
    }, (error) => {
        console.error(error.response.body);
    });
    
