/api/space/user-management/users (v1)

The following operations are supported on this resource:

  • GET - Get all users
GET /users Version 1

This API retrieves all the users based on a passed URI context. It returns a Users transfer object. It also supports the filtering, paging, and sorting of returned data.

Sample Usage

GET /users


  • Sample Output XML:
    <users size="1" ri="/api/space/user-management/users">
        <user key="65859" uri="/api/space/user-management/users/65859"
             href="/api/space/user-management/users/65859">
        <name>super</name>
        <primaryEmail>super@juniper.net</primaryEmail>
        <firstName>Open</firstName>
        <lastName>Space</lastName>
        </user>
    </users>

  • Sample Output JSON:
    {
      "users": {
          "@size":"1",
          "@uri":"/api/space/user-management/users"
          "user":[
             {
               "@key":"65859",
               "@uri": "/api/space/user-management/users/65859",
               "@href": "/api/space/user-management/users/65859",
               "name":"super",
               "primaryEmail": "super@juniper.net",
               "firstName": "Open",
               "lastName": "Space"
             }
          ]
      }
    }

  • Access Control

    The following capabilities are required to access this API: ReadUser

      For the current version of this API, refer to :
    • version 3