Advertisement
Guest User

Untitled

a guest
May 19th, 2019
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <script runat="server">
  2. Platform.Load("core","1.1.5");
  3.  
  4. var prox = new Script.Util.WSProxy();
  5. var queryAllAccounts = true;
  6. var cols = ["Client.ID","CustomerKey","ListName","ID"];
  7. var filter = {
  8. Property: "ListClassification",
  9. SimpleOperator: "equals",
  10. Value: "PublicationList"
  11. };
  12. var desc = prox.retrieve("List", cols, filter, queryAllAccounts);
  13.  
  14. Write(Stringify(desc));
  15.  
  16. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement