curl --location --request PUT 'https://api.lootlocker.com/game/v1/asset/instance/19/storage' \
--header 'Content-Type: application/json' \
--header 'x-session-token;' \
--data-raw '{
"storage": [
{
"key": "a key",
"value": "some updated value"
},
{
"key": "another key",
"value": "some updated value"
}
]
}'
{
"success": true,
"storage": [
{
"id": 1,
"key": "a key",
"value": "some updated value"
},
{
"id": 2,
"key": "another key",
"value": "some updated value"
},
{
"id": 3,
"key": "a third key",
"value": "some value"
},
{
"id": 4,
"key": "a fourth key",
"value": "some value"
}
]
}