jacchr
January 4, 2023, 7:10am
1
Hi Experts
Is it somehow possible to use /odata/Users to get all users created in the Cloud Orchstrator portal? I can get all users within a specific tenant but for audit reasons I need to be able to get all users that have been created in the Orchestrator portal under Accounts & Groups, Users & Group.
Hi @jacchr ,
Hope below answer your question.
Hi @ZacCoop , @vuliana ,
You can use the Orchestrator API to obtain those data with this endpoint:
**OrchestratorURL**/odata/Users?$filter=Type eq 'User'
If the users are on the same Tenant/Orchestrator as the bot, you can use Orchestrator HTTP request activity. Endpoint needs to be relative (omitting the OrchestratorURL)
EDIT : Note that this first option would require your bots to have privilege to see users (on the Robot role) as the request is done in the context of the Robot user.
If …
jacchr
January 4, 2023, 7:57am
3
Hi @mahmoud.zaky
I am not sure that it works with the Cloud Orchestrator.
If I use the following:
https://cloud.uipath.com/myorganization/odata/Users?$filter=Type eq 'User'
I get a response saying:
Service: orchestrator not found in Organization: myorganization Tenant: odata
It seems that the tenant is required.