Before reviewing the example, it's recommended that you first read the How to Authenticate tutorial.
The example below shows the authentication experience when a user selects On-premise Orchestrator as their instance type and enters a Folder value.
How it works
The following steps and image is an example of how the connector works from design time (i.e., user inputs) to run time (i.e., sending the HTTP request).
- Select the Connection type that you want to connect to.
- The selection determines the Orchestrator API endpoint the connector sends requests to.
- In this example, On-premise is selected; indicating the endpoint to use is
https://
- Enter a Connection Name.
- This name is used to identify the connection within your application.
- A connector can have multiple connections to the same or different Orchestrator tenant. Each connection requires its own connection settings and may include the same or different credentials (i.e., Username and Password). Adding multiple connections to the same tenant is useful if you plan to have multiple users that want to manage their own connections.
- Enter your UiPath Orchestrator URL and Tenant Name.
- Enter your Email or Username and Password.
- Enter a fully qualified Folder name.
- Klicken Sie auf Verbinden (Connect).
- Using the Folder input, the connector configures and sends the folowing requests to validate the user has access to the folder:
- GET
https://
- Orchestrator API responds with the folder
Id
.
- Orchestrator API responds with the folder
- GET
https://
- Orchestrator API responds with the user
Id
.
- Orchestrator API responds with the user
- GET
https://
- Orchestrator API responds with the
odata.count
(if the user does not have permissions, this value will be 0) and user information.
- Orchestrator API responds with the
- GET
- After verifying the user permissions, the connector configures and sends a request with the entered inputs to
https://
- The Orchestrator API responds with an
access_token
that you use for all subsequent API requests.
- Using the Folder input, the connector configures and sends the folowing requests to validate the user has access to the folder:

Vor ungefähr einem Jahr aktualisiert