Page Grids
Returns the list of dynamic tables attached to the page
Request
GET
https://api.wiki.yandex.net/v1/pages/{idx}/grids
Path parameters
|
Name |
Description |
|
idx |
Type: integer |
Query parameters
|
Name |
Description |
|
cursor |
Type: string Example: `` |
|
order_by |
Type: string If specified, sort the results by this field in the Enum: |
|
order_direction |
All of: OrderDirection
If Default: Example: `` |
|
page_id |
Type: integer
Default: Min value: |
|
page_size |
Type: integer Number of results per page. Default: Min value: Max value: |
Responses
200 OK
OK
Body
application/json
{
"results": [
{
"id": "example",
"title": "example",
"created_at": "2025-01-01T00:00:00Z"
}
],
"next_cursor": "example",
"prev_cursor": "example",
"has_next": true,
"page_id": 0
}
|
Name |
Description |
|
has_next |
Type: boolean For backward compatibility: if a cursor is set, check |
|
page_id |
Type: integer For backward compatibility: always equals 1 when a cursor is set |
|
results |
Type: PageGridsSchema[] Example
|
|
next_cursor |
Type: string Example: |
|
prev_cursor |
Type: string Example: |
PageGridsSchema
|
Name |
Description |
|
created_at |
Type: string<date-time> Example: |
|
id |
Type: string<uuid4> Example: |
|
title |
Type: string Example: |
Example
{
"id": "example",
"title": "example",
"created_at": "2025-01-01T00:00:00Z"
}