@nikita24tailor For sending the parameters to the post request try out the sample code as below:$.ajax({
url: '<url-path>',
type: 'POST',
data: { field1: "hello", field2 : "hello2"} ,
contentType: 'application/json; charset=utf-8',
success: function (response)...