Skip to main content
POST
/
api
/
v1
/
notion
/
bulk-update
Bulk update records
curl --request POST \
  --url https://{deployment}/api/v1/notion/bulk-update \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-Notion-Token: <api-key>' \
  --data '
{
  "records": [
    {
      "page_id": "abc123",
      "Status": "Done"
    }
  ]
}
'
{
  "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>"
}

Authorizations

X-API-KEY
string
header
required

Your deployment's API key (MMK_API_KEY).

X-Notion-Token
string
header
required

Your Notion integration token / internal token. Supplied by the caller (not stored server-side).

Body

application/json
records
object[]
required

Each record must include page_id plus the properties to change.

config
object

Optional concurrency/retry config.

Response

Per-record update results

success
boolean
total
integer
successful
integer
failed
integer
results
object[]
failed_data
object[]
error_message
string