New query parameters for export endpoints

  • Added the limitRecord query parameter to all export endpoints. This parameter limits the number of records to return for the query. The maximum is 30,000 records. When you don’t include this parameter, the API returns up to 25,000 records.

  • Added the fromRecord query parameter to all export endpoints. This parameter specifies the record number to start the export from. The default is 0.

You can use these query parameters together to paginate through large exports. For example, to get the first 10,000 records of an export, you would use limitRecord=10000&fromRecord=0. To get the next 10,000 records, you would use limitRecord=10000&fromRecord=10000.