【发布时间】:2021-10-22 12:01:20
【问题描述】:
我已尝试使用人员联系人创建 API,但出现错误。我相信 ENUM 数据是正确的
这发生在技能和年龄范围
{
"error": {
"code": 400,
"message": "person.age_ranges is a read only field.",
"status": "INVALID_ARGUMENT"
}
}
People.People.createContact( {"skills": [
{
"value": "Playing"
}
],
"ageRanges": [
{
"ageRange": "TWENTY_ONE_OR_OLDER"
}
],
})
【问题讨论】:
标签: google-apps-script contacts google-people-api