/ng-cms/content/{projectId}/{typeKey}https://apis-spb.konso.io/ng-cms/content/{projectId}/{typeKey}smart_toyAgentic specList content entries
Получает постранично отфильтрованный список записей контента.
Параметры запроса
projectIdstringThe unique identifier of the project (bucket)
typeKeystringThe key or ID of the content type to list entries for
statusnumberFilter by entry status: 1 = Draft, 2 = Published, 3 = Archived
searchstringFull-text search term applied across entry fields
fieldsstringField filter in key:value format (e.g. fields=title:Hello). Can be repeated for multiple filters.
offsetnumberпо умолчанию: 0Number of entries to skip (0-based)
limitnumberпо умолчанию: 50Maximum number of entries to return
Ответы
тип: PagedApiResponse<CmsContentEntryDto>
тип: ApiResponse<T>
successbooleanAlways falseerrorsErrorDetail[]List of server-side errorscorrelationIdstringUnique ID for tracing the errormessagestringError messagestackstringStack trace (non-production only)curl --request GET \
--url 'https://apis-spb.konso.io/ng-cms/content/{projectId}/{typeKey}?status=2&offset=0&limit=50' \
--header 'Authorization: Bearer <token>'{
"total": 2,
"list": [
{
"id": "ce_x9y8z7w6v5u4",
"projectId": "my-project-id",
"type": "blog-post",
"status": 2,
"fields": {
"title": "My First Post",
"body": "<p>Hello world</p>"
},
"schemaVersion": 2,
"createdBy": 42,
"updatedBy": 42,
"updatedByName": "Jane Smith",
"publishedBy": 42,
"createdAt": "2025-05-20T08:00:00Z",
"updatedAt": "2025-06-01T10:00:00Z",
"publishedAt": "2025-06-01T10:00:00Z",
"archivedAt": null
},
{
"id": "ce_a1b2c3d4e5f6",
"projectId": "my-project-id",
"type": "blog-post",
"status": 1,
"fields": {
"title": "Draft Post",
"body": "<p>Work in progress</p>"
},
"schemaVersion": 2,
"createdBy": 42,
"updatedBy": null,
"updatedByName": null,
"publishedBy": null,
"createdAt": "2025-06-10T14:30:00Z",
"updatedAt": "2025-06-10T14:30:00Z",
"publishedAt": null,
"archivedAt": null
}
]
}Исходный код
Референсные реализации этого эндпоинта — если поведение неочевидно, проще свериться с кодом, чем гадать.
Клиентские библиотеки
Официальные SDK для вызова этого метода из вашего кода — без ручной сборки запроса.
TS