正在通过 SendGrid API 更新 SendGrid 联系人自定义字段。为什么这不起作用?
Updating SendGrid contact custom fields via SendGrid API. Why isn't this working?
我正在尝试更新我的 SendGrid 联系人,但无法弄清楚为什么我尝试更新我的联系人的自定义字段时不起作用。我的保留字段(first_name、last_name、电子邮件)更新,但我的自定义字段没有。有什么想法吗?
此处的文档:https://sendgrid.api-docs.io/v3.0/contacts/add-or-update-a-contact
try:
headers = {
'authorization': f"Bearer {settings.SENDGRID_API_KEY}",
}
data = {
"list_ids": [
# "Users" list
"7c2...d20"
],
"contacts": [{
"email": user.email,
"first_name": user.first_name,
"last_name": user.last_name,
"custom_fields": {
"educator_role": user.educator_role,
}
}]
}
response = requests.put("https://api.sendgrid.com/v3/marketing/contacts", headers=headers, data=json.dumps(data))
if(response.status_code != 202):
capture_message(f"Could not add user with email {user.email} to Sendgrid.", level="error")
except:
capture_message(f"Adding/updating SendGrid contact failed for {user.email}.", level="error")```
与保留字段不同,更新自定义字段需要您在调用中传递自定义字段 id
而不是字段 name
。因此,不要使用 educator_role
,而是使用 id,它将是随机的,例如 e1_T
。
您可以通过 /marketing/field_definitions 端点获取 ID。
我正在尝试更新我的 SendGrid 联系人,但无法弄清楚为什么我尝试更新我的联系人的自定义字段时不起作用。我的保留字段(first_name、last_name、电子邮件)更新,但我的自定义字段没有。有什么想法吗?
此处的文档:https://sendgrid.api-docs.io/v3.0/contacts/add-or-update-a-contact
try:
headers = {
'authorization': f"Bearer {settings.SENDGRID_API_KEY}",
}
data = {
"list_ids": [
# "Users" list
"7c2...d20"
],
"contacts": [{
"email": user.email,
"first_name": user.first_name,
"last_name": user.last_name,
"custom_fields": {
"educator_role": user.educator_role,
}
}]
}
response = requests.put("https://api.sendgrid.com/v3/marketing/contacts", headers=headers, data=json.dumps(data))
if(response.status_code != 202):
capture_message(f"Could not add user with email {user.email} to Sendgrid.", level="error")
except:
capture_message(f"Adding/updating SendGrid contact failed for {user.email}.", level="error")```
与保留字段不同,更新自定义字段需要您在调用中传递自定义字段 id
而不是字段 name
。因此,不要使用 educator_role
,而是使用 id,它将是随机的,例如 e1_T
。
您可以通过 /marketing/field_definitions 端点获取 ID。