Get a List of Users

Sample Response

{
    "1": {
        "id": 1,
        "employeeId": 1,
        "firstName": "John",
        "lastName": "Doe",
        "email": "[email protected]",
        "status": "enabled",
        "lastLogin": "2011-03-19T10:16:00+00:00"
    },
    "2": {
        "id": 2,
        "firstName": "Jane",
        "lastName": "Doe",
        "email": "[email protected]",
        "status": "enabled",
        "lastLogin": "2011-08-29T11:17:43+00:00"
    }
}
<users>
    <user id="1" employeeId="1">
        <firstName>John</firstName>
        <lastName>Doe</lastName>
        <email>[email protected]</email>
        <lastLogin>2011-03-19T10:16:00+00:00</lastLogin>
    </user>
    <user id="2">
        <firstName>Jane</firstName>
        <lastName>Doe</lastName>
        <email>[email protected]</email>
        <lastLogin>2011-08-29T11:17:43+00:00</lastLogin>
    </user>
</users>

Notes

The "employeeId" attribute will only be set if the user record is linked to an employee record.
The last login date/time is formatted according to ISO 8601.

Language
Authorization
Basic
base64
:
Click Try It! to start a request and see the response here!