Retry Access Bundle provisioning in bulk

post

/access-governance/access-controls/20250331/accessBundles/retry

Retry Access Bundle provisioning in bulk.

Request

Header Parameters
  • The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Body ()
Details used to bulk retry access bundles.
Root Schema : RetryAccessBundleBulkDetails
Type: object
The information used to bulk retry Access Bundles.
Show Source
Nested Schema : excludedItems
Type: array
List of (globalIdentityId, accessBundleId) pairs to exclude.
Show Source
Nested Schema : AdvancedFilter
Type: object
Advanced Filter object.
Show Source
Nested Schema : keywordContains
Type: array
The list of keyword search strings.
Show Source
Nested Schema : retryItems
Type: array
List of (globalIdentityId, accessBundleId) pairs to retry.
Show Source
Nested Schema : AccessBundleRetryItem
Type: object
Represents a pair of globalIdentityId and accessBundleId used for retry operations.
Show Source
Nested Schema : conditions
Type: array
Filter condition.
Show Source
Nested Schema : Conditions
Type: object
Filter condition.
Show Source
Nested Schema : value
Type: array
Attribute Value.
Show Source
Back to Top

Response

Supported Media Types

200 Response

Bulk Access bundle retries was successfully done.
Headers
  • For optimistic concurrency control. See `if-match`.
  • 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 : RetryAccessBundlesBulkResults
Type: object
The result of the RetryBulkAccessBundleDetails operation.
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

409 Response

Conflict
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 retry failed provisioning of access bundles in bulk for identities.

cURL Request Example

curl -i -X POST \
   -H "Authorization:Bearer <your-access-token>" \
   -H "Content-Type:application/json" \
   -d \
'{
  "targetId": "98360b08-c107-4fc4-93d3-xxxa1c",
  "retryItems": [
    {
      "globalIdentityId": "globalId.ICF.224d20ff-5187-4301-a47bxxxxx132df95053b2879a66e61",
      "accessBundleId": "b0610b9f-3883-45a1-9906-54xxxx"
    }
  ],
  "excludedItems": []
}'\
 '<${service-instance-url}/access-governance/access-controls/${versionId}/accessBundles/retry' >'

Example Request Payload

{
  "targetId": "98360b08-c107-4fc4-93d3-xxxa1c",
  "retryItems": [
    {
      "globalIdentityId": "globalId.ICF.224d20ff-5187-4301-a47bxxxxx132df95053b2879a66e61",
      "accessBundleId": "b0610b9f-3883-45a1-9906-54xxxx"
    }
  ],
  "excludedItems": []
}

Example of the Response Code

You'll receive 200 OK response along with the following response body:

{
"message": "Access bundle retry is in progress. Updates will be available shortly.",
"result": "RETRY_IN_PROGRESS"
}
Back to Top