Skip to content

List Folder Children

Lists all the children of the provided folder identifier. The operation is paginated and the number of items returned can be controlled using the limit query parameter. The supported query params are as follows

  • complete - Returns detailed response when complete parameter is set true. By default it is false and minimal response will be returned.

  • status - To retrieve only soft deleted folder’s children, set status attribute as deleted. To retrieve only active folder’s children, set status attribute as active. Hard deleted folder’s children cannot be retrieved.

  • pageSize - Param to control the number of items returned in the response, set pageSize attribute. By default, it is set to 100.

  • nextPageToken - To get the next set of items, set nextPageToken attribute with the value from the previous response.

  • A folder should be created. To know more about creating a folder refer here
GET {baseUrl}/spaces/{spaceId}/folders/{folderId}/children
  • Headers:

    • Authorization: Bearer {tid token}

To know more about list children API refer here. For list children by path refer here.