Created
August 9, 2020 06:14
-
-
Save naveenvm93/f382021d3000d189e37c672ba0fb8a16 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"); | |
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