Get
//trimblecloud-fileservice/trimblecloud.fileservice/JobsAPI/get
get
[JVM]
abstract fun get(@NonNulljobId: @NonNullUUID): CompletableFuture<Response<Job>>
Retrieves a job by ID.
Return
- A future that resolves to the job response.
Parameters
JVM
| jobId | - The job id. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |
[JVM]
abstract fun get(@NonNulljobId: @NonNullUUID, @NonNullparams: @NonNullGetJobParams): CompletableFuture<Response<Job>>
Retrieves a job by ID with parameters.
Return
- A future that resolves to the job response.
Parameters
JVM
| jobId | - The job id. |
| params | - The parameters to filter the job details. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |