Organization
Folder
Get organization folders
Return a cursor-paginated page of folders at a location in the organization library.
get/v1/organizations/{id}/folders
Query parameters
page_sizeinteger
Maximum number of items to return.
page_tokenstring
Opaque continuation token from a previous page_info.next_page_token.
parent_idstring
Example:9bsv0s46s6s002p9ltq0
List folders located in this parent folder. Omit to list folders at the library root.
Response
OK
Example response
{
"items": [
{
"id": "9bsv0s46s6s002p9ltq0",
"name": "Guides",
"library": {
"id": "9bsv0s46s6s002p9ltq0",
"name": "Product"
},
"parent": {
"id": "9bsv0s46s6s002p9ltq0",
"name": "Guides",
"parent_id": "9bsv0s46s6s002p9ltq0"
},
"created_by": {
"id": "9bsv0s46s6s002p9ltq0",
"first_name": "Test",
"last_name": "User",
"picture": "https://example.com/users/my-user.png"
}
}
]
}