1

我将此对象作为 HTTP POST 发送:

{
    "email_address": "rickard@transticket.se",
    "status": "subscribed",
    "merge_fields": {
        "APA": "1",
        "HEJ": "2"
    }
}

https://us13.api.mailchimp.com/3.0/lists/045dfc0a43/members

我得到了这个回应:

{
    "type": "http://developer.mailchimp.com/documentation/mailchimp/guides/error-glossary/",
    "title": "Invalid Resource",
    "status": 400,
    "detail": "The resource submitted could not be validated. For field-specific details, see the 'errors' array.",
    "instance": "",
    "errors": [ {
        "field": "",
        "message": "Schema describes object, array found instead"
    }]
}

有任何想法吗?

4

3 回答 3

3

这很容易,您的代码 POST 请求是正确的。也许您的列表中不存在合并字段。merge_fields参数采用带有一些预定义键的字典见下文。

{
    apikey: "yourmailmergekey"
    email_address: "test_email@gmail.com"
    status: "subscribed"
    merge_fields: {
        "FNAME: "-- First Name --",
        "LNAME": "-- Last Name --",
        "PHONE": "-- Phone Number --",
        "ADDRESS": "-- Address --"
    }
}

希望有帮助

于 2020-04-08T08:41:23.373 回答
2

我本来希望发表评论,但我仍然缺乏 SO rep pts。

我的简短回答是,如果没有关于您正在使用的代码的更多信息,该错误意味着您没有将正确的“设置”JSON对象传递给 API。最好记住,即使您最初将其设置为 JSON 对象,您也必须确保您的名称-值对"merge_fields"也必须是一个JSON对象。

但是,如果您确定主要和内部名称-值对确实都在 JSON 中正确设置,请发布代码,我会尽力提供更多帮助。

于 2016-07-17T23:30:23.467 回答
0

这段代码对我有用。

{
  "email_address": "test_email@gmail.com",
  "status": "subscribed",
  "merge_fields": {
    "FNAME": "teste",
    "LNAME": "92988410440"
  }
}

在此处输入图像描述 链接有用 - https://mailchimp.com/developer/marketing/guides/create-your-first-audience/

于 2021-03-13T19:19:55.603 回答