notion_retrieve_page
Retrieve specific properties of a Notion page by its ID using the Notion API. Filter the response to include only selected properties for efficient data management.
Instructions
Retrieves a Notion page by ID. Returns page properties, not page content.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
filter_properties | No | Optional list of property IDs to filter the response | |
page_id | Yes | The ID of the page to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"filter_properties": {
"description": "Optional list of property IDs to filter the response",
"items": {
"type": "string"
},
"type": "array"
},
"page_id": {
"description": "The ID of the page to retrieve",
"type": "string"
}
},
"required": [
"page_id"
],
"type": "object"
}