{ "opencollection": "1.0.0", "info": { "name": "Fake Store Auth Users API", "version": "1.0.0" }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List users", "type": "http" }, "http": { "method": "GET", "url": "https://fakestoreapi.com/users", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "sort", "value": "", "type": "query", "description": "Sort order for results" } ] }, "docs": "List users" }, { "info": { "name": "Create a user", "type": "http" }, "http": { "method": "POST", "url": "https://fakestoreapi.com/users", "body": { "type": "json", "data": "{}" } }, "docs": "Create a user" }, { "info": { "name": "Get a user", "type": "http" }, "http": { "method": "GET", "url": "https://fakestoreapi.com/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" } ] }, "docs": "Get a user" }, { "info": { "name": "Replace a user", "type": "http" }, "http": { "method": "PUT", "url": "https://fakestoreapi.com/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Replace a user" }, { "info": { "name": "Partially update a user", "type": "http" }, "http": { "method": "PATCH", "url": "https://fakestoreapi.com/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially update a user" }, { "info": { "name": "Delete a user", "type": "http" }, "http": { "method": "DELETE", "url": "https://fakestoreapi.com/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User ID" } ] }, "docs": "Delete a user" } ] } ], "bundled": true }