Hi. Trying to update user's Lastname in Content Server.
What I'm doing wrong?
$.ajax({
type: "PUT",
dataType: "json",
url: BASE_URL+"/members/296018",
headers: {"OTCSTicket": otcsticket},
data: {last_name: 'Test'},
success: function(data){
console.log(data);
}
});
If I just try to retrieve user's details that works fine.