Created
May 22, 2019 07:09
-
-
Save jdeblank/2527fb82a04fb4b959be2670dca38bae to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script runat="server"> | |
Platform.Load("core","1.1.5"); | |
var prox = new Script.Util.WSProxy(); | |
var action = "ClearData"; | |
var props = { | |
CustomerKey: 'testDE123' | |
}; | |
var opts = {}; | |
var data = prox.performItem("DataExtension", props, action, opts); | |
Write("<br>result: " + Stringify(data)); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment