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

go.gifSee details on SwaggerHub in the ReadyAPI TestEngine API – Create User section.

Using Web UI

  1. Log in to the TestEngine web interface under a user account with administrator permissions.

  2. Open the user menu and select Manage Users:

    Administrating TestEngine: Openning manage users page
  3. Click Add User:

    Administrating TestEngine: Adding a user
  4. Specify the username and password.

  5. If you want to grant administrator permissions, select the Administrator option.

  6. Click Save:

    Administrating TestEngine: Saving a user

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}

go.gifSee details on SwaggerHub in the ReadyAPI TestEngine API – Deactivate User section.

Using Web UI

  1. Log in to the TestEngine web interface under a user account with administrator permissions.

  2. Open the user menu and select Manage Users:

    Administrating TestEngine: Openning manage users page
  3. Click Remove user :

    Administrating TestEngine: Removing a user
  4. Click OK to confirm the deletion:

    confirm-user-deletion.png

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}

go.gifSee details on SwaggerHub in the ReadyAPI TestEngine API – Update User section.

Using Web UI

  1. Log in to the TestEngine web interface under a user account with administrator permissions.

  2. Open the user menu and select Manage Users:

    Administrating TestEngine: Openning manage users page
  3. Click Edit user :

    Administrating TestEngine: Editing a user
  4. Change the password and/or the type of the user.

  5. Click Save:

    Administrating TestEngine: Saving an edited user

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}

go.gifSee details on SwaggerHub.

See Also

Publication date: