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

ParameterTypeDescriptionExample
jobIdjava.lang.StringJob 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));