You need to stringify your body:
let params: RequestInit = {
headers: headers,
method: "PUT",
body: JSON.stringify(body)
}
You need to stringify your body:
let params: RequestInit = {
headers: headers,
method: "PUT",
body: JSON.stringify(body)
}