getDataHarvestDownloadUrl abstract method

  1. @GET.new('/users/@me/harvest/{harvestId}/download')
Future<HarvestDownloadUrlResponse> getDataHarvestDownloadUrl({
  1. @Path.new('harvestId') required String harvestId,
})

Get data harvest download URL.

Retrieves the download URL for a completed data harvest. The URL is temporary and expires after a set time. Can only be accessed for completed harvests.

harvestId - The harvestId.

Implementation

@GET('/users/@me/harvest/{harvestId}/download')
Future<HarvestDownloadUrlResponse> getDataHarvestDownloadUrl({
  @Path('harvestId') required String harvestId,
});