Retry failed provisioning of Access Bundle.

post

/access-governance/access-controls/20250331/accessBundles/{accessBundleId}/retry

Retries a failed provisioning of Access Bundle.

Request

Path Parameters
Header Parameters
  • The client request ID for tracing. The only valid characters for request IDs are letters, numbers, underscore, and dash.
Body ()
Details for the retry operation.
Root Schema : RetryAccessBundleDetails
Type: object
The information about retrying provisioning for an Access Bundle.
Show Source
Back to Top

Response

Supported Media Types

200 Response

Access Bundle retry was successfully requested.
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 : PermissionData
Type: object
Permission Data.
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 an access bundles for an identity.

cURL Request Example

curl -i -X POST \
   -H "Authorization:Bearer <your-access-token>" \
   -H "Content-Type:application/json" \
   -d \
'{
      "globalIdentityId": "globalId.ICF.xxxxf.f87ee200b43132df95053b2879a66e61"
}'\
 '<${service-instance-url}/access-governance/access-controls/${versionId}/accessBundles/{accessBundleId}/retry' >'

Example Request Payload

{
      "globalIdentityId": "globalId.ICF.xxxxf.f87ee200b43132df95053b2879a66e61"
}

Example of the Response Code

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

{
"globalIdentityId": "globalId.ICF.xxxxf.f87ee200b43132df95053b2879a66e61",
"state": "Retry in Progress"
}
Back to Top