Java Script
$("#buy-one-ton").click(function() {
headerParams = {'Authorization':'Token R3M0V3M3NT-R3M0V3M3NT-R3M0V3M3NT-R3M0V3M',
'X-Api-Key':'T3ST-T3ST-T3ST-T3ST'};
data = { tenderId:'7',
userId:'buyOneCustomerName',
amount: '1' }
$.ajax({
type: 'POST',
url: 'https://dev.removement.org/purchase/',
data: data,
crossDomain: true,
dataType: 'json',
cache: false,
headers: headerParams,
}).done(function(response) {
console.log(response);
alert("Allocation has been done")
});
});