データベースのメール列に書き込もうとしましたが、このエラーが発生し続けます。
列には電子メールのプロパティ タイプがあります
Email has a value that does not match its property type: email.
Insomnia から Notion API を使用して POST リクエストを送信し、リクエストを作成していhttps://api.notion.com/v1/pagesます。本体はこんな感じ。
{
"parent": {
"database_id": "a_long_database_id"
},
"properties": {
"Email": {
"email": [
{
"text": {
"content": "someebody@gmail.com"
}
}
]
}
}
}
問題はプロパティから来ていますが、どこにあるのかわかりません。