$.ajax(
{
url: "https://104.131.103.113:8890/dashboard",
type: "POST",
data: { token: "dasdasdadfasdf", client_id: '123456' }
},
success: function(response){
console.log(response);
}
});
or
$.ajax(
{
url: "https://104.131.103.113:8890/dashboard",
type: "GET",
data: { token: "dasdasdadfasdf", client_id: '123456', vehicle_id:'123' }
},
success: function(response){
console.log(response);
}
});