Search Folders
Retrieves information about folders the authenticated user has at least read-only access to. Admin requests using the Lucid-Request-As: admin header return all account folders; this capability is exclusive to Enterprise Shield accounts. Results are sorted by creation date and paginated. Rate limited to 300 requests per 5 seconds per account.
Headers
If the requesting user is an account owner or folder admin with the required permissions and they make the request with the value of “admin” as this header and include an admin scope, the request will be made using their admin permissions. Account owners and document admins can access the admin version of folder search.
Request body
Example request
{
"type": "folder"
}Response
OK with an array of Folder Resource objects containing information about folders the authenticated user has access to.
Example response
[
{
"id": 123456789,
"type": "folder",
"name": "Folder Name",
"parent": 123456788,
"created": "2020-06-26T16:29:37Z",
"trashed": "2022-01-20T12:14:18Z",
"attributes": [
{
"name": "Sample Label",
"value": "Sample Value"
}
]
}
]