in OCI Java sdk, how to retrieve the autonomous database username and apex workspace restful url?

113 Views Asked by At

I am using the Oracle autonomous cloud database and creating a couple of database username with ethe restful web enabled, along with the database schema, i also create some Apex workspace based on these database schema.

my question is how to retrieve the restful endpoint URL of these database username, Apex Workspace via the OCI Java SDK. Thank you.

1

There are 1 best solutions below

0
Karthik Hegde On

Have you tried this REST API?

https://docs.oracle.com/en-us/iaas/api/#/en/database/20160918/AutonomousDatabase/

These 2 attributes apexDetails and connectionStrings could help you get the info you need.

Thanks.