Get page
Gets information about the page by ID
Function GetPage(Val Token, Val Page) Export
Parameter | CLI option | Type | Required | Description |
---|---|---|---|---|
Token | --token | String | ✔ | Token |
Page | --page | String | ✔ | Page ID |
Returns: Map Of KeyAndValue - serialized JSON response from Notion
1C:Enterprise/OneScript code example
Token = "secret_9RsfMrRMqZwqp0Zl0B...";
Page = "12682aa7-fc4e-8138-9f3e-f9e7e9aecee3";
Result = OPI_Notion.GetPage(Token, Page);
- Bash
- CMD/Bat
oint notion GetPage \
--token "***" \
--page "13082aa7-fc4e-8186-a857-cf7d2f285034"
oint notion GetPage ^
--token "***" ^
--page "13082aa7-fc4e-8186-a857-cf7d2f285034"
Result
{
"object": "page",
"id": "11a82aa7-fc4e-8198-ad23-eeb2e6ea678f",
"created_time": "2024-10-09T06:14:00Z",
"last_edited_time": "2024-10-09T06:14:00Z",
"created_by": {
"object": "user",
"id": "8b07422e-eeea-40d1-8d5e-c784211825b0"
},
"last_edited_by": {
"object": "user",
"id": "8b07422e-eeea-40d1-8d5e-c784211825b0"
},
"cover": null,
"icon": null,
"parent": {
"type": "page_id",
"page_id": "5dd94c34-fab0-4bff-986b-7511c0779f77"
},
"archived": false,
"in_trash": false,
"properties": {
"title": {
"id": "title",
"type": "title",
"title": [
{
"type": "text",
"text": {
"content": "title",
"link": null
},
"annotations": {
"bold": false,
"italic": false,
"strikethrough": false,
"underline": false,
"code": false,
"color": "default"
},
"plain_text": "title",
"href": null
}
]
}
},
"url": "https://www.notion.so/title-11a82aa7fc4e8198ad23eeb2e6ea678f",
"public_url": null,
"request_id": "73d93b68-a4cf-48cb-ba49-0f24a81661ce"
}