URL Paths
A URL (Uniform Resource Locator) path identifies the REST API resource that you want to call. A complete URL path consists of the server name and the resource path:
https://<server>/<resource-path>
The <server>
is the REST API Server URL mentioned in the welcome email sent to
your Oracle Cloud service administrator. For example:
https://servername.us2.oraclecloud.com
The <resource-path>
is the relative path or endpoint to the REST resource you're working
with. For example, for order releases, the resource path is as follows:
/logisticsRestApi/resources/v2/orderReleases
So, the combined request URL for the order release resource becomes:
https://servername.us2.oraclecloud.com/logisticsRestApi/resources/v2/orderReleases
Note that the resource path typically
contains the context root for the
REST API web module and the API version of a resource. For example,
for the order release resource, the context root for the REST API
web module is logisticsRestApi
and the version is v2
.
An additional URI is available to bypass
the SSO server. That URI uses resources-int
instead of resources
.
For example, /logisticsRestApi/resources-int
. This URI requires the HTTP basic authentication authorization header.
It also requires a staged integration user in OTM.