Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save naveenvm93/f382021d3000d189e37c672ba0fb8a16 to your computer and use it in GitHub Desktop.
Save naveenvm93/f382021d3000d189e37c672ba0fb8a16 to your computer and use it in GitHub Desktop.
<script runat="server">
Platform.Load("Core","1");
try{
var jsonpost = Platform.Request.GetPostData(0);
var json = Platform.Function.ParseJSON(jsonpost);
var Message = "Call back";
var insertResponse = Platform.Function.InsertData("Transactional_Event_Notification_CallBack_Verification",["Message","Body"],[Message,jsonpost]);
} catch (e) {
Write("<br>" + Stringify(e))
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment