Determine whether the specified repository item has children

head/repository/items/{itemId}/children
Internal-Use Only

Checks whether the specified repository item has children. Authorization: Requires read permission on the parent and children.

Request Samples

1

Response Samples

1No example avaliable

Path Parameters

NameTypeRequiredDescription
itemId
string
true

The unique identifier for the repository item.

Examples:
"d6eefec9-dcc2-4574-8af8-69897038d9c5"

Query Parameters

NameTypeRequiredDescription
recurse
boolean
false

When true, items are returned for the specified itemId and all subfolders. Default is false.

filter
string<filter-criteria>
false

Filter criteria for items. The following fields are not supported in filter criteria: children, contentType, and digest. See Filtering in REST APIs.

Example:
"eq(name,'reports')"
limit
integer
false

The maximum number of items to return. Defaults to 10. The maximum cannot exceed 500.

Examples:
10
sortBy
string<sort-criteria>
false

Sorts the returned items. The following fields are not supported for sort: children, contentType, and digest. See Sorting in REST APIs.

Example:
"name:ascending:primary"
start
integer
false

0-based offset of the first type to return. Defaults to 0.

Examples:
10

Responses

StatusMeaningDescription
200OKOK - the repository item has children.
404Not FoundNot found - the repository item does not have children.