{ "opencollection": "1.0.0", "info": { "name": "Supermicro Redfish Accounts API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Accounts", "type": "folder" }, "items": [ { "info": { "name": "List Accounts", "type": "http" }, "http": { "method": "GET", "url": "https://{bmc-ip}/redfish/v1/AccountService/Accounts" }, "docs": "Returns all user accounts configured on the BMC." }, { "info": { "name": "Create Account", "type": "http" }, "http": { "method": "POST", "url": "https://{bmc-ip}/redfish/v1/AccountService/Accounts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new user account on the BMC." }, { "info": { "name": "Get Account", "type": "http" }, "http": { "method": "GET", "url": "https://{bmc-ip}/redfish/v1/AccountService/Accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path" } ] }, "docs": "Returns details about a specific user account." }, { "info": { "name": "Update Account", "type": "http" }, "http": { "method": "PATCH", "url": "https://{bmc-ip}/redfish/v1/AccountService/Accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates properties of a user account such as password or role." }, { "info": { "name": "Delete Account", "type": "http" }, "http": { "method": "DELETE", "url": "https://{bmc-ip}/redfish/v1/AccountService/Accounts/:accountId", "params": [ { "name": "accountId", "value": "", "type": "path" } ] }, "docs": "Deletes a user account from the BMC." } ] } ], "bundled": true }