Forums
I 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
- Read more about Receiving callback from e-signlive
- 9 comments
- Log in or register to post comments
- 130 views