getArchiveDownloadUrl abstract method
- @GET.new('/admin/archives/{subjectType}/{subjectId}/{archiveId}/download')
Get archive download URL.
Generate a time-limited download link to the archive file. The URL provides direct access to download the compressed archive contents.
subjectType - The subjectType.
subjectId - The subjectId.
archiveId - The archiveId.
Implementation
@GET('/admin/archives/{subjectType}/{subjectId}/{archiveId}/download')
Future<DownloadUrlResponseSchema> getArchiveDownloadUrl({
@Path('subjectType') required String subjectType,
@Path('subjectId') required String subjectId,
@Path('archiveId') required String archiveId,
});