Receiving callback from e-signlive
Tuesday, March 8, 2016 at 09:38amI have registered http://xyz.com/dir/api/CallbackLog/Log as callback Url on account page.
I have also created API controller method
public static void Log(CallbackLogModel model)
{
.........
}
where model is JSON model I expect to be posted to the specified url.
Also based on your documentation I expect that JSON will have following structure.
public class CallbackLogModel
{
public string name { get; set; }
public string sessionUser { get; set; }
public string packageId { get; set; }
public string message { get; set; }
public string documentId { get; set; }
public DateTime? Created { get; set; }
}
Callback never goes trough to controller log method. What am I doing wrong?
Reply to: Receiving callback from e-signlive
Tuesday, March 8, 2016 at 10:07amReply to: Receiving callback from e-signlive
Wednesday, March 9, 2016 at 09:07amReply to: Receiving callback from e-signlive
Wednesday, March 9, 2016 at 09:14amReply to: Receiving callback from e-signlive
Wednesday, March 9, 2016 at 10:06amReply to: Receiving callback from e-signlive
Wednesday, March 9, 2016 at 10:31amReply to: Receiving callback from e-signlive
Thursday, March 10, 2016 at 04:44amReply to: Receiving callback from e-signlive
Thursday, March 10, 2016 at 07:16amReply to: Receiving callback from e-signlive
Thursday, March 10, 2016 at 10:35ampublic void logModel(CallbackLogModel jsonModel)
. And yes, the content-type is indeed application/json. Below is a screenshot of what eSignLive sends when you register for callbacks. As you can see, there shouldn't be any issue with the json sent by eSignLive. If you're saying that it works fine with postman, then I'm leaning towards the possibility that your callback endpoint is not receiving the json due to the eSignLive outbound IPs not being whitelisted.Reply to: Receiving callback from e-signlive
Thursday, March 10, 2016 at 10:43am