{ "opencollection": "1.0.0", "info": { "name": "Express Gateway Admin Apps Users API", "version": "1.0.0" }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9876/users" }, "docs": "List users" }, { "info": { "name": "Create a user", "type": "http" }, "http": { "method": "POST", "url": "http://localhost:9876/users", "body": { "type": "json", "data": "{}" } }, "docs": "Create a user" }, { "info": { "name": "Get a user", "type": "http" }, "http": { "method": "GET", "url": "http://localhost:9876/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Username or user id" } ] }, "docs": "Get a user" }, { "info": { "name": "Update a user", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9876/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Username or user id" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a user" }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "http://localhost:9876/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Username or user id" } ] }, "docs": "Delete a user" }, { "info": { "name": "Activate or deactivate a user", "type": "http" }, "http": { "method": "PUT", "url": "http://localhost:9876/users/:id/status", "params": [ { "name": "id", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Activate or deactivate a user" } ] } ], "bundled": true }