GET /folders
List all folders the authenticated user is a member of.
What folders are
Pagination
Authorizations
X-API-KEYstringRequired
API key for authentication
Query parameters
querystringOptionalExample:
Search query to filter folders by name
marketinglimitnumber · min: 1 · max: 50OptionalExample:
Maximum number of folders to return
20afterstringOptionalExample:
Cursor for pagination (from previous response's nextCursor)
eyJpZCI6IjEyMyJ9Responses
200
Folders retrieved successfully
application/json
hasMorebooleanRequiredExample:
Whether more results exist beyond this page
truenextCursorstring · nullableRequiredExample:
Cursor for fetching the next page (null if no more results)
eyJpZCI6IjQ1NiJ9400
Invalid request parameters
401
Invalid or missing API key
get/v1.0/folders
GET /v1.0/folders HTTP/1.1
Host: public-api.gamma.app
X-API-KEY: YOUR_API_KEY
Accept: */*
{
"data": [
{
"id": "folder_abc123",
"name": "Marketing Materials"
}
],
"hasMore": true,
"nextCursor": "eyJpZCI6IjQ1NiJ9"
}Related
Last updated
Was this helpful?