getDataHarvestStatus abstract method

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

Get data harvest status.

Retrieves detailed status information for a specific data harvest. Shows progress, completion status, and other metadata about the harvest request.

harvestId - The harvestId.

Implementation

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