API-get-background-result
Fetch the result of a background-processed Notion page using its page ID. Designed for the Notion ReadOnly MCP Server to enable efficient retrieval of processed data.
Instructions
Retrieve the result of a background processing request
Input Schema
Name | Required | Description | Default |
---|---|---|---|
page_id | Yes | Identifier for the Notion page that was processed in background |
Input Schema (JSON Schema)
{
"properties": {
"page_id": {
"description": "Identifier for the Notion page that was processed in background",
"type": "string"
}
},
"required": [
"page_id"
],
"type": "object"
}