User Role Management APIs System Users Resource

This service allows for listing system users in the BA Platform.

Get list of users

get

Returns the list of users in the platform, this list is in an xml format as shown in the example response.

Example Request:

GET pentaho/api/users

cURL Example:

curl -X GET \
  "http://localhost:8080/pentaho/api/users" \
  -H "Authorization: Basic YWRtaW46cGFzc3dvcmQ=" \
  -H "Accept: application/xml"

Example Response:

<?xml version="1.0" encoding="UTF-8"?>
  <users>
    <user>pat</user>
    <user>admin</user>
    <user>suzy</user>
    <user>tiffany</user>
    <user>enco*de:te^s_t$</user>
  </users>

Returns: Response object containing an xml list of users in the platform.

Authorizations
AuthorizationstringRequired

HTTP Basic Authentication

Responses
get
/users

Last updated

Was this helpful?