{ "opencollection": "1.0.0", "info": { "name": "BlueCart Catalogs Users API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Authorization", "value": "{{Authorization}}", "placement": "header" } }, "items": [ { "info": { "name": "Users", "type": "folder" }, "items": [ { "info": { "name": "List Users", "type": "http" }, "http": { "method": "GET", "url": "https://{invokeUrl}/users/", "params": [ { "name": "nextToken", "value": "", "type": "query", "description": "Pagination token returned by a previous page; omit for the first page." } ] }, "docs": "Retrieves a page of users. Use the returned nextToken to page through results." }, { "info": { "name": "Create A User", "type": "http" }, "http": { "method": "POST", "url": "https://{invokeUrl}/users/", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new platform user." }, { "info": { "name": "Retrieve A User", "type": "http" }, "http": { "method": "GET", "url": "https://{invokeUrl}/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User identifier." } ] }, "docs": "Retrieves a single user by its identifier." }, { "info": { "name": "Update A User", "type": "http" }, "http": { "method": "PUT", "url": "https://{invokeUrl}/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User identifier." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing user identified by its identifier." }, { "info": { "name": "Disable A User", "type": "http" }, "http": { "method": "DELETE", "url": "https://{invokeUrl}/users/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "User identifier." } ] }, "docs": "Disables a user identified by its identifier." } ] } ], "bundled": true }