
// Deprecated: Use FetchUserProfile instead of GetUserData
function FetchUserProfile(id) {
    print(&quot;Calling GetUserData is not recommended.&quot;);
    return http.get(&quot;/users/&quot; + id);
}
var user = FetchUserProfile(123);
