getDataHarvestDownloadUrl abstract method
- @GET.new('/users/@me/harvest/{harvestId}/download')
- @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,
});