Get a list of Account Profiles

get

/access-governance/service-administration/20250331/orchestratedSystems/{orchestratedSystemId}/accountProfiles

Returns details of all available account profiles associated with a given orchestrated system, with support for pagination.

Request

Path Parameters
Query Parameters
  • Minimum Length: 1
    Maximum Length: 255
    Parameter to request only the default AccountProfile be returned.
    Default Value: false
  • Collection Format: multi
    Maximum Number of Items: 5
    The list of keywords to filter on from the following fields: displayName, description.
  • Minimum Value: 1
    Maximum Value: 1000
    The maximum number of items to return.
    Default Value: 10
  • Minimum Length: 1
    A token representing the position at which to start retrieving results. This must come from the `opc-next-page` header field of a previous response.
  • The field to sort by. Only one sort order may be provided. Default order for timeCreated is descending. Default order for displayName is ascending.
    Default Value: timeCreated
    Allowed Values: [ "timeCreated", "displayName" ]
  • The sort order to use, either 'ASC' or 'DESC'.
    Allowed Values: [ "ASC", "DESC" ]
Header Parameters
  • The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Back to Top

Response

Supported Media Types

200 Response

A list of Account Profile summaries
Headers
  • For pagination of a list of items. When paging through a list, if this header appears in the response, then a partial list might have been returned. Include this value as the `page` parameter for the subsequent GET request to get the next batch of items.
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : AccountProfileCollection
Type: object
Results of an AccountProfile search. Contains a list of AccountProfileSummary items.
Show Source
Nested Schema : items
Type: array
List of AccountProfileSummary items.
Show Source
Nested Schema : AccountProfileSummary
Type: object
Summary of the AccountProfile, used when returning lists.
Show Source
Nested Schema : IdentityReference
Type: object
User details.
Show Source

400 Response

Bad Request
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

401 Response

Unauthorized
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

404 Response

Not Found
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

429 Response

Too Many Requests
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

500 Response

Internal Server Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source

Default Response

Unknown Error
Headers
  • Unique Oracle-assigned identifier for the request. If you need to contact Oracle about a particular request, please provide the request ID.
Body ()
Root Schema : Error
Type: object
Error Information.
Show Source
Back to Top

Examples

The following example shows how to retrieve a list of Account Profiles associated with an Access Bundle.

cURL Example GET

curl -i -X \
 GET \
   -H \
 "Authorization:Bearer <your access token>" \
 '${service-instance-url}/access-governance/service-administration/${version}/orchestratedSystems/${orchestratedSystemId}/accountProfiles'

Sample GET Command using the REST Client Tool

${service-instance-url}/access-governance/service-administration/${version}/orchestratedSystems/${orchestratedSystemId}/accountProfiles

Example of the Response Code

You'll receive a 200 OK Response Code with the following Response body:

{
  "items" : [ {
    "id" : "84321700-1a93-4cf2-9226-1xxxxxxxxxxx8",
    "displayName" : "dbum API",
    "isDefault" : true,
    "timeLastModified" : "2025-03-25T06:19:01.234Z",
    "lastModifiedBy" : {
      "id" : "globalId.125123c3-eedc-4d6a-b6d4-6c0f6537bad2.18.0xxxxxxxxxx4aa046b3ceb16a",
      "name" : "Amel Maclead"
    }
  } ]
}
    

Note:

If you get a 200 OK response with no items, then it indicates that no account profiles are associated with the given Orchestrated system.
Back to Top