Allowing Oracle Services Onboarding Using the API
Identity domain administrators can control whether Oracle Services can be onboarded to an identity domain.
To onboard Oracle Services, turn on Oracle Services Onboarding. Oracle Services Onboarding is turned on by default.
- When turned on, Oracle Services can be onboarded using an identity domain:
disallowOPCAppCreation = false
- When turned off, Oracle Service onboarding is disabled, and no new Oracle Services can be created:
disallowOPCAppCreation = true
Get Operation to Update disallowOPCAppCreation
GET {{host}}/admin/v1/Settings/Settings?attributes=disallowOPCAppCreation
{
"id": "Settings",
"lastReplicatedTime": "2024-01-17T01:00:10.351Z",
"disallowOPCAppCreation": true
}
Patch Operation to Update disallowOPCAppCreation
PATCH {{host}}/admin/v1/Settings/Settings
{
"schemas": [
"urn:ietf:params:scim:api:messages:2.0:PatchOp"
],
"Operations": [
{
"op": "replace",
"path": "disallowOPCAppCreation",
"value": true
}
]
}