Is it possible to update multiple properties with a single request? Documentation just shows a single property being changed per request
Currently trying:
curl https://api.notion.com/v1/pages/PageID \
-H 'Authorization: Bearer '"SHHH! Secret"'' \
-H "Content-Type: application/json" \
-H "Notion-Version: 2022-06-28" \
-X PATCH \
--data '{
"properties": {
"Price": {
"number": 42
},
"URL to website": "https://www.google.com"
}
}'
but just get the validation error as a response. But individually these properties do update