Bulk page update (raw)
curl --request POST \
--url https://{deployment}/api/v1/notion/bulk-page-update \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-Notion-Token: <api-key>' \
--data '
{
"records": [
{
"page_id": "abc123",
"erase_content": true
},
{
"page_id": "def456",
"archived": true
}
]
}
'import requests
url = "https://{deployment}/api/v1/notion/bulk-page-update"
payload = { "records": [
{
"page_id": "abc123",
"erase_content": True
},
{
"page_id": "def456",
"archived": True
}
] }
headers = {
"X-API-KEY": "<api-key>",
"X-Notion-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-API-KEY': '<api-key>',
'X-Notion-Token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
records: [{page_id: 'abc123', erase_content: true}, {page_id: 'def456', archived: true}]
})
};
fetch('https://{deployment}/api/v1/notion/bulk-page-update', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{deployment}/api/v1/notion/bulk-page-update",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'records' => [
[
'page_id' => 'abc123',
'erase_content' => true
],
[
'page_id' => 'def456',
'archived' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>",
"X-Notion-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{deployment}/api/v1/notion/bulk-page-update"
payload := strings.NewReader("{\n \"records\": [\n {\n \"page_id\": \"abc123\",\n \"erase_content\": true\n },\n {\n \"page_id\": \"def456\",\n \"archived\": true\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-Notion-Token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{deployment}/api/v1/notion/bulk-page-update")
.header("X-API-KEY", "<api-key>")
.header("X-Notion-Token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"records\": [\n {\n \"page_id\": \"abc123\",\n \"erase_content\": true\n },\n {\n \"page_id\": \"def456\",\n \"archived\": true\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{deployment}/api/v1/notion/bulk-page-update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-Notion-Token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"records\": [\n {\n \"page_id\": \"abc123\",\n \"erase_content\": true\n },\n {\n \"page_id\": \"def456\",\n \"archived\": true\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"total": 123,
"successful": 123,
"failed": 123,
"results": [
{
"index": 123,
"success": true,
"page_id": "<string>",
"data": {},
"error": "<string>",
"error_code": "<string>"
}
],
"failed_data": [
{}
],
"error_message": "<string>"
}{
"success": false,
"error": "<string>"
}Bulk operations
Bulk page update (raw)
Batch PATCH page parameters directly (erase content, icon, cover, template, in_trash, archived, is_locked, properties) without schema conversion — properties must be in Notion API format. Pro license required.
POST
/
api
/
v1
/
notion
/
bulk-page-update
Bulk page update (raw)
curl --request POST \
--url https://{deployment}/api/v1/notion/bulk-page-update \
--header 'Content-Type: application/json' \
--header 'X-API-KEY: <api-key>' \
--header 'X-Notion-Token: <api-key>' \
--data '
{
"records": [
{
"page_id": "abc123",
"erase_content": true
},
{
"page_id": "def456",
"archived": true
}
]
}
'import requests
url = "https://{deployment}/api/v1/notion/bulk-page-update"
payload = { "records": [
{
"page_id": "abc123",
"erase_content": True
},
{
"page_id": "def456",
"archived": True
}
] }
headers = {
"X-API-KEY": "<api-key>",
"X-Notion-Token": "<api-key>",
"Content-Type": "application/json"
}
response = requests.post(url, json=payload, headers=headers)
print(response.text)const options = {
method: 'POST',
headers: {
'X-API-KEY': '<api-key>',
'X-Notion-Token': '<api-key>',
'Content-Type': 'application/json'
},
body: JSON.stringify({
records: [{page_id: 'abc123', erase_content: true}, {page_id: 'def456', archived: true}]
})
};
fetch('https://{deployment}/api/v1/notion/bulk-page-update', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://{deployment}/api/v1/notion/bulk-page-update",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "POST",
CURLOPT_POSTFIELDS => json_encode([
'records' => [
[
'page_id' => 'abc123',
'erase_content' => true
],
[
'page_id' => 'def456',
'archived' => true
]
]
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"X-API-KEY: <api-key>",
"X-Notion-Token: <api-key>"
],
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"strings"
"net/http"
"io"
)
func main() {
url := "https://{deployment}/api/v1/notion/bulk-page-update"
payload := strings.NewReader("{\n \"records\": [\n {\n \"page_id\": \"abc123\",\n \"erase_content\": true\n },\n {\n \"page_id\": \"def456\",\n \"archived\": true\n }\n ]\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("X-API-KEY", "<api-key>")
req.Header.Add("X-Notion-Token", "<api-key>")
req.Header.Add("Content-Type", "application/json")
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.post("https://{deployment}/api/v1/notion/bulk-page-update")
.header("X-API-KEY", "<api-key>")
.header("X-Notion-Token", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"records\": [\n {\n \"page_id\": \"abc123\",\n \"erase_content\": true\n },\n {\n \"page_id\": \"def456\",\n \"archived\": true\n }\n ]\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://{deployment}/api/v1/notion/bulk-page-update")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["X-API-KEY"] = '<api-key>'
request["X-Notion-Token"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"records\": [\n {\n \"page_id\": \"abc123\",\n \"erase_content\": true\n },\n {\n \"page_id\": \"def456\",\n \"archived\": true\n }\n ]\n}"
response = http.request(request)
puts response.read_body{
"success": true,
"total": 123,
"successful": 123,
"failed": 123,
"results": [
{
"index": 123,
"success": true,
"page_id": "<string>",
"data": {},
"error": "<string>",
"error_code": "<string>"
}
],
"failed_data": [
{}
],
"error_message": "<string>"
}{
"success": false,
"error": "<string>"
}Authorizations
Your deployment's API key (MMK_API_KEY).
Your Notion integration token / internal token. Supplied by the caller (not stored server-side).
Body
application/json
Was this page helpful?
⌘I

