get https://api.bamboohr.com/api/gateway.php//v1/meta/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.