{ "opencollection": "1.0.0", "info": { "name": "Nuxeo Platform ACL User API", "version": "LTS 2021" }, "items": [ { "info": { "name": "User", "type": "folder" }, "items": [ { "info": { "name": "Get the logged in user", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/nuxeo/api/v1/me" }, "docs": "Get the logged in user" }, { "info": { "name": "Change the logged in user's password", "type": "http" }, "http": { "method": "PUT", "url": "https://{host}:{port}/nuxeo/api/v1/me/changepassword", "body": { "type": "json", "data": "{}" } }, "docs": "Change the logged in user's password" }, { "info": { "name": "Create a user", "type": "http" }, "http": { "method": "POST", "url": "https://{host}:{port}/nuxeo/api/v1/user", "body": { "type": "json", "data": "{}" } }, "docs": "Create a user" }, { "info": { "name": "Get a user by its name", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/nuxeo/api/v1/user/search", "params": [ { "name": "q", "value": "", "type": "query", "description": "Query string" } ] }, "docs": "Get a user by its name" }, { "info": { "name": "Get a user by its name", "type": "http" }, "http": { "method": "GET", "url": "https://{host}:{port}/nuxeo/api/v1/user/:userName", "params": [ { "name": "userName", "value": "", "type": "path", "description": "Username of the user, ex: 'Administrator'" } ] }, "docs": "Get a user by its name" }, { "info": { "name": "Update a user by its name", "type": "http" }, "http": { "method": "PUT", "url": "https://{host}:{port}/nuxeo/api/v1/user/:userName", "params": [ { "name": "userName", "value": "", "type": "path", "description": "Username of the user, ex: 'Administrator'" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a user by its name" }, { "info": { "name": "Delete a user by its name", "type": "http" }, "http": { "method": "DELETE", "url": "https://{host}:{port}/nuxeo/api/v1/user/:userName", "params": [ { "name": "userName", "value": "", "type": "path", "description": "Username of the user, ex: 'Administrator'" } ] }, "docs": "Delete a user by its name" }, { "info": { "name": "Add a group to a user", "type": "http" }, "http": { "method": "POST", "url": "https://{host}:{port}/nuxeo/api/v1/user/:userName/group/:groupName", "params": [ { "name": "userName", "value": "", "type": "path", "description": "Username of the user, ex: 'Administrator'" }, { "name": "groupName", "value": "", "type": "path", "description": "Name of the group, ex: 'members'" } ] }, "docs": "Add a group to a user" } ] } ], "bundled": true }