Request Samples

Retrieving information on subscribers of a single mailing list

This packet retrieves info on subscribers of the mailing list called MyMailer.

<packet version="1.4.2.0">
<maillist>
<get-members>
   <filter>
      <list-name>MyMailer</list-name>
   </filter>
</get-members>
</maillist>
</packet>

 

Retrieving information on subscribers of multiple mailing lists

This packet retrieves info on subscribers of the mailing lists called MyMailer and SubscribeMe.

<packet version="1.4.2.0">
<maillist>
<get-members>
   <filter>
      <name>MyMailer</name>
      <name>SubscribeMe</name>
   </filter>
</get-members>
</maillist>
</packet>

 

This packet retrieves info on subscribers of the mailing list specified by ID 14, and mailing lists called MyList and SubscriptionList.

<packet version="1.4.2.0">
<maillist>
<get-members>
   <filter>
      <list-id>14</list-id>
   </filter>
</get-members>

<get-members>
   <filter>
      <list-name>MyList</list-name>
      <list-name>SubscriptionList</list-name>
   </filter>
</get-members>
</maillist>
</packet>