js add body data to put request

JavaScript
fetch(url, {
  method: 'PUT',
  body: "any type of data"
});
Source

Also in JavaScript: