Abaixo um exemplo bem básico sobre como efetuar a conversão.
Angular.js 1.x $http service
$http({ method:'POST' ,url:'cross_domain_url' ,withCredentials: true ,params:object_data }).success(function(object_answer){ }).error(function(object_answer){ });
jQuery
$.ajax({ method:'POST' ,url:'cross_domain_url' ,xhrFields: { withCredentials: true } ,data:object_datadata }).success(function(object_answer){ }).error(function(object_answer){ });