ConsistlyAPI
PPT sets

List ppt_sets

PPT sets are folder-like containers for slides, blocks, images, and other office assets. Filter by `set_type` to narrow to a specific asset class.

GET
/ppt_sets
AuthorizationBearer <token>

Bearer API key. CMS endpoints require cms:read or cms:write (plus narrower writes for specific resources).

In: header

Query Parameters

set_type?string

Response Body

application/json

curl -X GET "https://example.com/ppt_sets"
{  "object": "list",  "data": [    {      "id": "string",      "object": "ppt_set",      "organization": "string",      "parent_ppt_set": "string",      "name": "string",      "folder_key": "string",      "set_type": "string",      "description": "string",      "order_index": 0,      "created": "2019-08-24T14:15:22Z",      "updated": "2019-08-24T14:15:22Z"    }  ],  "has_more": true,  "url": "string"}