modzyClient.getJobClient().getJob
Retrieve the job information
modzyClient.getJobClient().getJob(String jobId)
Returns the Job details. It includes the status
, total
, completed
, and failed
number of items.
Parameters
Parameter | Type | Description | Example |
---|---|---|---|
jobId | java.lang.String | Job identifier | '14856eb1-0ad8-49e7-9da3-887acb80fea5' |
Returns
com.modzy.sdk.model.Job
object with the job status obtained from the server
Examples
Job job = modzyClient.getJobClient().getJob("14856eb1-0ad8-49e7-9da3-887acb80fea5");
System.out.println(String.format(" %s", job));
Updated over 2 years ago