automation-cloud
latest
false
- Getting started
- About this guide
- Available resources
- API endpoint URL structure
- Enumeration List
- Authentication
- Scopes and permissions
- Platform Management APIs

Automation Cloud API guide
Last updated Aug 12, 2025
API endpoint URL structure
linkIn this section, you can learn to construct API requests by understanding the URL structure of UiPath® endpoints.
Base URL
linkThe base URL is the starting point for all API requests. It serves as the foundation for constructing the endpoint URL. The base URL is https://cloud.uipath.com.
Entry point
linkapi
- signifies the entry point to the API platform management resources, for example /api/Group/
Resource path
linkThe resource path specifies the exact resource or operation you wish to perform. It might include keywords like Group, RobotAccount, Setting, depending on the purpose of the request.
Path parameters
linkPath parameters are used to pass dynamic values to an API endpoint. These values help for identifying specific resources that
are relevant to the API request. For example,
/Group/{partitionGlobalId}/{groupId}
partitionGlobalId
- the ID of the organization.
groupId
- the ID of the group.
Query parameters
linkQuery parameters are additional parameters attached to the URL to provide more context or filters for the requested data.
These are often preceded by a
?
symbol and separated by &
symbols. For instance, you might use query parameters to specify filtering criteria or pagination instructions.
Example
linkPutting all components together, a URL for a organization-specific resource might look like this,
https://cloud.uipath.com/{organizationName}/identity_/api/group/{partitionGlobalId}/{groupId}
.
A URL for tenant-specific resource can look like this:
https://cloud.uipath.com/{organizationName}/{tenantName}/orchestrator_/odata/Assets
.