2017-03-06 5 views

답변

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