Skip to content

List Children

//trimblecloud-fileservice/trimblecloud.fileservice/SpacesAPI/listChildren

listChildren

[JVM]
abstract fun listChildren(@NonNullspaceId: @NonNullUUID): CompletableFuture<Response<SpaceList>>

Lists all children of a space by space identifier. 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.

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 listChildren(@NonNullspaceId: @NonNullUUID, @NonNullparams: @NonNullListSpaceChildrenParams): CompletableFuture<Response<SpaceList>>

Lists all children of a space by space identifier. 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.

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.