UserInfo
Download Pleasant Password Server
Version 6 adds a new endpoint for our API (Application Programming Interface), to retrieve User information.
The values which can be retrieved are:
Id, Username, DisplayName, Email, Policy, Roles, Status
GET userinfo
Retrieves a list of users from the system.
Example Request
https://localhost:10001/api/v6/rest/userinfo
Example Result
HTTP 200
[
     {
        "Id": "c58ad37e-88a2-4fe2-abc8-6e01d9342cba",
        "Username": "JohnDoe",
        "Displayname": "John Doe",
        "Email": "john.doe@example.com",
        "Status": "Enabled",
        "Roles": "Users, Administration",
        "Policy": "<Inherited>"
     }
]
