Update Items Meta
The Upgrade Items Meta API allows players to enhance the hidden attributes of their items, such as magic resistance, attack speed, or special effects.
Request
PUT /v1/inventory/items/meta HTTP/1.1
Host: invent-dev.api.mimiland.io
mm-client-id: mml
Authorization: bearer v4.public.eyJhZC*****5xTtpdbQI
mm-user-id: 64edd6c4f8969bbd526d3b8b
Content-Type: application/json
Content-Length: 104
{
"id": "64d1b75bf0b4fd1b4a1d4bb9",
"meta":"{\"damage\":18,\"hitPoint\":130,\"speed\":66}"
}const myHeaders = new Headers();
myHeaders.append("otp", "842584");
myHeaders.append("mm-client-id", "mml");
myHeaders.append("Authorization", "bearer v4.public.eyJhZC*****5xTtpdbQI");
myHeaders.append("mm-user-id", "64edd6c4f8969bbd526d3b8b");
const requestOptions = {
method: "DELETE",
headers: myHeaders,
redirect: "follow"
};
fetch("https://invent-dev.api.mimiland.io/v1/inventory/items?itemIds[]=6544e3c5d146b8fb4bab1862", requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.error(error));Parameter
Key
Type
Description
meta *required
String
Meta of the items. (demage, speed...)
Last updated