Allow partial download to especific files or endpoint

This is for developer-specific feature requests. For other requests please contact our customer support team.

Is your feature request related to a problem? Please describe.
I am working with Google app script, i need to download a file, it has 500 MB size but Google app script only allows 50 MB per call. Is it possible to do a partial download? with calls of 50MB each

Describe the solution you’d like
Allow to do callout with range on headers, to download the file for segments. Example of header

'https://nubik.zoom.us/rec/download/AdKmlwhel25YL04wcOaAbcXM2KjrBYF9peOCH2b4aHoGDsHxomv5X9uVABMpOkgjvy76F2qxdhM7rS7X.jRU-FOcEDDKa6oNp?access_token=’+token,
{
method: ‘GET’,
contentType: contentType,
headers: {range: “bytes=” + start + “-” + end}
}

Regards