getJob abstract method

  1. @POST.new('/admin/jobs/get')
Future<GetJobResponseSchema> getJob({
  1. @Body.new() required GetJobRequest body,
})

Get job detail.

Fetch a single job ledger entry with full payload, result, and progress.

body - Name not received - field will be skipped.

Implementation

@POST('/admin/jobs/get')
Future<GetJobResponseSchema> getJob({@Body() required GetJobRequest body});