Update item metadata

Item metadata is linked to the item on-chain via a metadata URL. The metadata itself is stored off-chain. This means item metadata can be updated quickly and often, since it doesn’t require an on-chain transaction to do so.

curl --location --request PUT 'http://127.0.0.1:8080/v1/items/edc96875-9b17-416a-9fb9-497dcb44abcd' \
--header 'x-mythical-environment-id: 09fcc2a5-5204-44ef-a796-aca631c1f98a' \
--header 'Content-Type: application/x-www-form-urlencoded' \
--data-urlencode '%7B%22metadata%22%3A%20%7B%0A%20%20%20%20%20%20%20%20%22name%22%3A%20%22Test%20Item%20Type%202-updated%22%2C%0A%20%20%20%20%20%20%20%20%22description%22%3A%20%22This%20Is%20A%20Test%201234-updated%22%2C%0A%20%20%20%20%20%20%20%20%22image%22%3A%20%22http%3A%2F%2Fimage-updated.png%22%2C%0A%20%20%20%20%20%20%20%20%22attributes%22%3A%20%5B%0A%20%20%20%20%20%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22type%22%3A%20%22TestAttribute%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22value%22%3A%20%22testing%204%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22displayType%22%3A%20%22string%22%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%22maxValue%22%3A%200%0A%20%20%20%20%20%20%20%20%20%20%20%20%7D%0A%20%20%20%20%20%20%20%20%5D%0A%20%20%20%20%7D%7D='

Last updated