List folders
Returns a paginated list of folders. This does not include files like emails, components, etc.
Query parameters
The page number of results you want to display. Use with limit.
Limit the number of results per page.
Filter by parent folder. Must reference an existing folder. If not set, the response filters by the root level directory.
To list only items in the root folder, leave parent_folder_id unset and only set direct_descendants_only to true.
If true, this returns only children of the parent folder.
Return records created before this time. Must be a unix timestamp.
Return records created after this time. Must be a unix timestamp.
Return records updated before this time. Must be a unix timestamp.
Return records updated after this time. Must be a unix timestamp.
Response
Successful response
Example response
{
"folders": [
{
"id": "123e4567-e89b-12d3-a456-426614174000",
"name": "Product Announcements",
"parent_folder_id": null,
"created": 1714732800,
"updated": 1714732800
}
],
"meta": {
"filters": {
"parent_folder_id": "123e4567-e89b-12d3-a456-426614174000",
"direct_descendants_only": true,
"sort_by": "created",
"sort_order": "desc",
"created_before": 1714732800,
"created_after": null,
"updated_before": null,
"updated_after": null
}
}
}Changes
No recorded changes to this endpoint across all 1 revision of this API.