뉴스 레터를 여는 사람들의 연락처를 이메일 목록에 보낸 후 API를 찾는 데 어려움을 겪고 있습니다. GetResponse의 공식 API 문서에서 해결책을 찾지 못했습니다. 어떤 아이디어 나 제안이 도움이 될 수 있습니다. 감사.GetResponse API v3 - 뉴스 레터를 여는 연락처를 얻으십시오.
0
A
답변
0
지금은 다소 오래되었지만 나는 대답하려고 노력할 것입니다. 어쩌면 도움이 될 것입니다.
GetResponse 웹 인터페이스 내부와 마찬가지로 일부 기준에 따라 연락처를 검색해야합니다. API 문서의 이러한 페이지는 다음과 같이 설명합니다. http://apidocs.getresponse.com/v3/resources/search-contacts
검색 연락처는 API에서 가장 복잡한 부분입니다. 특정 메시지를 열어 연락처 검색을 저장하려면 https://api.getresponse.com/v3/search-contacts/에 다음과 같은 것을 POST해야합니다 :
는{
"name": "test_conditions", //can be any you like
"subscribersType": [
"subscribed" //can also be "undelivered", "removed" and "unconfirmed"
],
"sectionLogicOperator": "or", //or "and"
"section": [ //section can have up to 8 conditions; one saved search can have up to 4 sections
{
"campaignIdsList": [
"V" //you'll need to get campaigns' IDs with http://apidocs.getresponse.com/v3/resources/campaigns#campaigns.get.all
],
"logicOperator": "or",
"subscriberCycle": [
"receiving_autoresponder",
"not_receiving_autoresponder"
],
"subscriptionDate": "all_time", //"today", "yesterday", "this_month", "last_month", "this_week", "last_week" are also possible
"conditions": [
{
"conditionType": "opened",
"operatorType": "message_operator",
"operator": "autoresponder", //or "newsletter", or "split"
"value": "WTjXF" //message id, should be firstly got with a separate API call
}
]
}
]
}
같은 요청에 대한 페이로드가 형성되어야하는 방법에
더 많은 정보는 여기에 있습니다 : http://apidocs.getresponse.com/v3/resources/search-contacts-reference
마지막으로, 검색을 저장하지 않고 메시지를 연 이메일 만받는 경우 위의 객체에서 "name"속성을 제거하고 this를 http://apidocs.getresponse.com/v3/search-contacts/contacts 에 게시해야합니다. http://apidocs.getresponse.com/v3/resources/search-contacts#search-contacts.contacts.form