Query: Retrieve a Page
Notion Operation
Last updated
{
"handle": "get-page",
"state": "inDev",
"meta": {
"short": "Get Page",
"description": "Retrieve a Notion page by its ID."
},
"input": [
{
"name": "page_id",
"type": "String",
"required": true,
"meta": {
"description": "The ID of the Notion page to retrieve."
}
}
],
"output": [
{
"name": "page",
"type": "Object",
"selector": ["."],
"meta": {
"description": "The retrieved Notion page object."
}
}
],
"steps": [
{
"type": "http",
"http": {
"method": "GET",
"path": {
"value": "/v1/pages/{{page_id}}",
"placeholders": [
{
"name": "page_id",
"type": "String",
"description": "The ID of the Notion page to retrieve.",
"required": true
}
]
},
"headers": {
"Notion-Version": {
"value": "2022-06-28"
}
}
}
}
]
}