getArchiveDetails abstract method
- @GET.new('/admin/archives/{subjectType}/{subjectId}/{archiveId}')
Get archive details.
Retrieve metadata for a specific archive including its status, creation time, expiration, and file location. Does not return the archive contents themselves.
subjectType - The subjectType.
subjectId - The subjectId.
archiveId - The archiveId.
Implementation
@GET('/admin/archives/{subjectType}/{subjectId}/{archiveId}')
Future<GetArchiveResponseSchema> getArchiveDetails({
@Path('subjectType') required String subjectType,
@Path('subjectId') required String subjectId,
@Path('archiveId') required String archiveId,
});