List of Users
Collection of users on the account
GET /api/users
Response
-
usernameusers login name, can be used when creating tasks, opportunities or cases -
namefriendly name for the user -
currencyusers preferred currency -
timezoneusers preferred timezone -
loggedInincluded and alwaystruefor the authenticated user -
partyIdid of the party associated with the user
HTTP/1.1 200 OK
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<users>
<user>
<username>a.user</username>
<currency>GBP</currency>
<name>Alfred User</name>
<loggedIn>true</loggedIn>
<timezone>Europe/London</timezone>
<partyId>100</partyId>
</user>
<user>
<username>j.joe</username>
<currency>GBP</currency>
<name>Jane Doe</name>
<timezone>Europe/London</timezone>
<partyId>101</partyId>
</user>
</users>
