{ "opencollection": "1.0.0", "info": { "name": "Nakama Account Storage API", "version": "2.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Storage", "type": "folder" }, "items": [ { "info": { "name": "Get objects from the storage engine.", "type": "http" }, "http": { "method": "POST", "url": "http://127.0.0.1:7350/v2/storage", "body": { "type": "json", "data": "{}" } }, "docs": "Get objects from the storage engine." }, { "info": { "name": "Write objects into the storage engine.", "type": "http" }, "http": { "method": "PUT", "url": "http://127.0.0.1:7350/v2/storage", "body": { "type": "json", "data": "{}" } }, "docs": "Write objects into the storage engine." }, { "info": { "name": "List publicly readable storage objects in a given collection.", "type": "http" }, "http": { "method": "GET", "url": "http://127.0.0.1:7350/v2/storage/:collection", "params": [ { "name": "collection", "value": "", "type": "path", "description": "The collection to list over." }, { "name": "user_id", "value": "", "type": "query", "description": "The user id of the storage objects to list. Set empty to list all users." }, { "name": "limit", "value": "", "type": "query" }, { "name": "cursor", "value": "", "type": "query" } ] }, "docs": "List publicly readable storage objects in a given collection." }, { "info": { "name": "Delete one or more objects by id or username.", "type": "http" }, "http": { "method": "PUT", "url": "http://127.0.0.1:7350/v2/storage/delete", "body": { "type": "json", "data": "{}" } }, "docs": "Delete one or more objects by id or username." } ] } ], "bundled": true }