Manage Users
Add users
Using API
To create a user by using the TestEngine API, you need to send the following request:
POST http://<testengine-host>:8080/api/v1/users
See details on SwaggerHub in the ReadyAPI TestEngine API – Create User section.
Using Web UI
Log in to the TestEngine web interface under a user account with administrator permissions.
Open the user menu and select Manage Users:
Click Add User:
Specify the username and password.
If you want to grant administrator permissions, select the Administrator option.
Click Save:
Deactivate users
Using API
To deactivate a user by using the TestEngine API, you need to send the following request:
DEACTIVATE http://<testengine-host>:8080/api/v1/users/{username}
See details on SwaggerHub in the ReadyAPI TestEngine API – Deactivate User section.
Using Web UI
Log in to the TestEngine web interface under a user account with administrator permissions.
Open the user menu and select Manage Users:
Click
:
Click OK to confirm the deletion:
Edit user
Using API
To modify a user by using the TestEngine API, you need to send the following request:
PUT http://<testengine-host>:8080/api/v1/users/{username}
See details on SwaggerHub in the ReadyAPI TestEngine API – Update User section.
Using Web UI
Log in to the TestEngine web interface under a user account with administrator permissions.
Open the user menu and select Manage Users:
Click
:
Change the password and/or the type of the user.
Click Save:
View users
Using API
To view TestEngine users, send the following request:
To get a list of all users:
GET http://<testengine-host>:8080/api/v1/users
To get data about a particular user:
GET http://<testengine-host>:8080/api/v1/users/{username}