- Getting Started
- Demo apps
- How To
- Notifications
- Using VB Expressions
- Designing your App
- Designing your app with Autopilot
- Events and Rules
- Rule: If-Then-Else
- Rule: Open a Page
- Rule: Open URL
- Rule: Close Pop-Over/Bottom Sheet
- Rule: Log Message
- Rule: Show Message
- Rule: Show/Hide Spinner
- Rule: Set Value
- Rule: Start Process
- Rule: Reset Values
- Rule: Upload File to Storage Bucket
- Rule: Download File From Storage Bucket
- Rule: Create Entity Record
- Rule: Update Entity Record
- Rule: Delete Entity Record
- Rule: Add to Queue
- Rule: Trigger workflow
- Rule: Submit Action
- Leveraging RPA in your App
- Leveraging Entities in Your App
- Leveraging Queues in Your App
- Leveraging Media in your app
- Leveraging Actions in your app
- Leveraging Connections in your apps
- Adding a connection to your app
- Replacing a connection
- Using connections in List controls
- FAQ for connections in Apps
- Apps in Studio Web
- Application Lifecycle Management (ALM)
- UiPath First-Party Apps
- Basic Troubleshooting Guide

Apps user guide
FAQ for connections in Apps
Feature availability depends on the cloud platform you use. For details, refer to the Apps feature availability page.
What is the difference between a shared connection and a personal connection?
Personal connections are configured in personal folders. While designing your app, you can select a connection from your personal workspace. At runtime, this connection becomes unavailable to other users.
Shared connections are the connections which reside in a shared folder. As a runtime user, you can also use the same connection, provided you have access to the shared folder.
How can i get a raw response from the API?
You can use the RawResponse property in the Response object. This property stores the string output from the API. To access the raw response, use the following expression:
<PageName>.<ControlName>.<RuleName>.Response.RawResponse
<PageName>.<ControlName>.<RuleName>.Response.RawResponse
Can i use the result of a connection API rule and bind it to a table control?
Yes, you can convert ListItems into ListSource using the ToListSource extension method.
You can write this expression in the data source of the Table control:
<PageName>.<ControlName>.<RuleName>.Response.Value.ToListSource
<PageName>.<ControlName>.<RuleName>.Response.Value.ToListSource
If you cannot find the ToListSource method, this means the value type is not a List type.
Where do i get more details on individual connectors?
To get more details on individual connectors, access the Integration Services User Guide documentation page.
The left sidebar contains a list of pages containing information for each officially supported connector, its API, and authentication methods.
Can i onboard my own APIs? can i use them via connections in apps?
Yes, you can integrate custom APIs using the Connector Builder.
Can i capture an API error at runtime?
Yes. To capture a runtime error thrown by an API, use the following expression in a control:
<PageName>.<ControlName>.<API>.Error
<PageName>.<ControlName>.<API>.Error
- What is the difference between a shared connection and a personal connection?
- How can i get a raw response from the API?
- Can i use the result of a connection API rule and bind it to a table control?
- Where do i get more details on individual connectors?
- Can i onboard my own APIs? can i use them via connections in apps?
- Can i capture an API error at runtime?