Reputation: 13109
When trying to update a notion page ala
notionClient.pages.update({
page_id: updatePageId,
properties: updateObj
});
why does this work
updateBlockObj = {
"Title":{"title":[{"text":{"content":"I AM TdITLE"}}]}
};
and this also works:
updateBlockObj = {
"numberfield":101,
};
but this does not
updateBlockObj = {
"numberfield":101,
"Title":{"title":[{"text":{"content":"I AM TdITLE"}}]}
};
Upvotes: 0
Views: 106
Reputation: 13109
const updateBlockObj = {
"Tags": {
"multi_select": [
{"name":"rrr"},
{"name":'ttt'}
]
},
"numberfield": {
number: 200
},
"Title": {
"title":[{
"text": {
"content": "I AM TdITxcxxLE"
}
}]
}
};
Upvotes: 0