Get Users

End point: [RemoteTM URL]/users
Send a GET request with these headers:
Header Value
Session  The ticket received from Authorization Request
Content-Type application/json
RemoteTM responds with a JSON object.
On success, field 'status' is set to 'OK' and a list of users in JSON format is returned in field 'users'. Example:
{
    "users":[{
        "role":"PM",
        "name":"Project Manager",
        "active":true,
        "id":"projman",
        "updated":false,
        "email":"projman@mydomain.com"
    },{
        "role":"TR",
        "name":"Linguist",
        "active":true,
        "id":"linguist",
        "updated":true,
        "email":"linguist@mydomain.com"
    },{
        "role":"SA",
        "name":"System Administrator",
        "active":true,
        "id":"sysadmin",
        "updated":true,
        "email":"sysadmin@mydomain.com"
    }],
    "status":"OK"
}
On error, field 'status' is set to 'Error' and field 'reason' contains the error cause. Example:
{
    "status": "Error",
    "reason": "Access denied"
}