Get With Minimal Response
//trimblecloud-fileservice/trimblecloud.fileservice/SpacesAPI/getWithMinimalResponse
getWithMinimalResponse
[JVM]
abstract fun getWithMinimalResponse(@NonNullspaceId: @NonNullUUID): CompletableFuture<Response<MinimalSpace>>
Get minimal space by Id. Default filter is applied. It retrieves space with status = active.
Return
- A future that resolves to the minimal space response.
Parameters
JVM
| spaceId | - Space identifier. |
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 getWithMinimalResponse(@NonNullspaceId: @NonNullUUID, status: Status): CompletableFuture<Response<MinimalSpace>>
Get minimal space by Id. The response includes the file space descriptor and its metadata information.
Return
- A future that resolves to the minimal space response.
Parameters
JVM
| spaceId | - Space identifier. |
| status | - The status query parameter is used to filter the resources based on their status. |
Throws
| TCPServiceException | - If an error occurs due to API or network-related issues. |
| SDKClientException | - If a client-side error occurs within the SDK. |