Creating Users from service - Issue creating Users
Hi,
I am creating users from service, I using now CreateUserWithOptions() from EntityServices..
after executing my service I am able to see users by using this service(custom service from ptc found via article - https://www.ptc.com/en/support/article/CS176431 )
```````
var params = {
tags: undefined /* TAGS */,
nameMask: undefined /* STRING */,
type: 'User' /* STRING */,
maxItems: undefined /* NUMBER */
};
// result: INFOTABLE dataShape: RootEntityList
var result = Resources["EntityServices"].GetEntityList(params);
``````
But not able to see users from composer and in users section too, if I search particular user which I created I am getting no results found in search box.
Also, I am not able to delete the user through service.

