Skip to content

List Children With Minimal Response

//trimblecloud-fileservice/trimblecloud.fileservice/SpacesAPI/listChildrenWithMinimalResponse

listChildrenWithMinimalResponse

[JVM]
abstract fun listChildrenWithMinimalResponse(@NonNullspaceId: @NonNullUUID): CompletableFuture<Response<MinimalSpaceList>>

Lists all children of a space by space identifier with minimal details. The operation is paginated and the response contains a token that can be used to get the next page of results. Default filter is applied. It retrieves resources with status = active, pageSize = 100, urlDuration = 60m.

Return

  • A future that resolves to the list response with minimal details.

Parameters

JVM

spaceId- The space 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 listChildrenWithMinimalResponse(@NonNullspaceId: @NonNullUUID, @NonNullparams: @NonNullListSpaceChildrenParams): CompletableFuture<Response<MinimalSpaceList>>

Lists all children of a space by space identifier with minimal details. The operation is paginated and the response contains a token that can be used to get the next page of results.

Return

  • A future that resolves to the list response with minimal details.

Parameters

JVM

spaceId- The space id.
params- The parameters to the filter operation.

Throws

TCPServiceException- If an error occurs due to API or network-related issues.
SDKClientException- If a client-side error occurs within the SDK.