getArchiveDetails abstract method

  1. @GET.new('/admin/archives/{subjectType}/{subjectId}/{archiveId}')
Future<GetArchiveResponseSchema> getArchiveDetails({
  1. @Path.new('subjectType') required String subjectType,
  2. @Path.new('subjectId') required String subjectId,
  3. @Path.new('archiveId') required String 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,
});