UiPath Documentation
apps
latest
false
Apps user guide
important :
For documentation on app projects in Studio Web, refer to the App Projects chapter in the Studio Web documentation: https://docs.uipath.com/studio-web/automation-cloud/latest/user-guide/apps-in-studio-web.

FAQ for connections in Apps

Frequently asked questions about connections in UiPath Apps, covering shared vs. personal connections, raw API responses, result binding, custom APIs, and error capture.

Note:

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

Was this page helpful?

Connect

Need help? Support

Want to learn? UiPath Academy

Have questions? UiPath Forum

Stay updated