简体   繁体   中英

Can you get a MailChimp interest group ID without using the API?

With the MailChimp API, to add a member to a list with a specific interest group, you need both that list's ID and the interest group's ID.

To get both those IDs, you can either query the API for them, or in the case of the list ID you can find it in the form code that the MailChimp interface outputs. The interest group ID can not be found in the same way: the form code simply users integer IDs to reference the interest groups, which are not accepted by the API.

My question: is there any way to get the interest group IDs other than querying the API first? ie somewhere in the MailChimp interface?

Context: I'm building a simple add-on to a Wordpress website that includes a MailChimp signup form with interest groups. Parameters are set in the website admin including API key and list ID. If possible, I'd like to avoid having to build in a query mechanism to get, list and select the interest groups and rather just have the administrator enter the IDs.

You can use the Playgrounds in the Mailchimp Developer site located at developer.mailchimp.com

The Playground is a UI into the API and you can drill down using the Subresources into -> lists -> interest-categories -> interests.

Then choose the Response view and it will show the payload of the response that contains the id's you are looking for.

I am using V3 API and you can use Playground to get group id ( Mûhámmàd Yäsår K group name doesn't work for me)

Playground > List > [Your list] > interest-categories > interests > [Your group]-> You'll see payload with field id

Now that you have the group id, you can play with creating members: Playground > List > [Your list] > members > Click Create members

Here's the sample payload:

{
    "email_address": "user@mail.com",
    "status": "subscribed",
    "merge_fields": {
        "EMAIL": "user@mail.com",
        "FNAME": "Firstname",
        "LNAME": "Lastname",
        "POST_CODE": "",
        "ADDRESS": "",
        "PHONE": ""
    },
    "interests": {
        "733ba3180d": true
    }
}

Note: interests is not inside merge_fields

Hope this help.

据我所知,找到兴趣或兴趣类别 ID 的唯一方法是通过 API 本身。

如上所述,您可以使用 Mailchimp 开发者网站 (developer.mailchimp.com) 中的 Playgrounds,也可以对组的顺序进行排序,以便检索所需的所有 id,而不是依赖 API 调用或仅限于前 10 个.

也可以在嵌入编码表单页面中找到组 ID,但前提是组未隐藏。

What worked for me was using playground: https://us1.api.mailchimp.com/playground/

And then to use it, what worked for me was exactly like these:

$json = json_encode([
    'email_address' => $data['email'],
    'status'        => "subscribed", // "subscribed","unsubscribed","cleaned","pending"
    //'tags'  => array('es'),
    'merge_fields'      => [
        'FNAME'         => $data['name'],
        'USER'          => $data['user'],
        'COUNTRY'       => $data['country'],
        'BIRTHDATE'     => $data['birthdate'],
        'SUBSCRIP'      => $subsription
    ],
    "interests" => array(
        'PLACE_HERE_THE_ID' => true
    )
]);

Hope this helps :)

You can use either interest group id or its name for this(Hope you are using MaiChimp API v3). You can find it the MailChimp interface itself.

You need to use name instead of id as the parameters.

Please let me know if have any issue with using it. :)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM