使用 Notion-API 写入电子邮件列
Writing to Email column using Notion-API
我一直在尝试写入数据库中的电子邮件列,但我保留了
收到此错误。
该列有 属性 类型的电子邮件
Email has a value that does not match its property type: email.
我通过 POST 请求通过 Insomnia 使用概念 Api 提出请求
至 https://api.notion.com/v1/pages
。这是
身材怎么样。
{
"parent": {
"database_id": "a_long_database_id"
},
"properties": {
"Email": {
"email": [
{
"text": {
"content": "someebody@gmail.com"
}
}
]
}
}
}
问题出在属性上,但我不知道出在哪里。
确保数据库中的列设置为电子邮件。然后对于电子邮件,格式在您的请求中消失。试试这个:
"Email": {
"email": "somebody@email.com"
}
我一直在尝试写入数据库中的电子邮件列,但我保留了 收到此错误。
该列有 属性 类型的电子邮件
Email has a value that does not match its property type: email.
我通过 POST 请求通过 Insomnia 使用概念 Api 提出请求
至 https://api.notion.com/v1/pages
。这是
身材怎么样。
{
"parent": {
"database_id": "a_long_database_id"
},
"properties": {
"Email": {
"email": [
{
"text": {
"content": "someebody@gmail.com"
}
}
]
}
}
}
问题出在属性上,但我不知道出在哪里。
确保数据库中的列设置为电子邮件。然后对于电子邮件,格式在您的请求中消失。试试这个:
"Email": {
"email": "somebody@email.com"
}