Okta Identity Governance
/Management APIs
/- Update a resource owner
Configure the resource owners
List all resources with owners
List all unowned resources
Update a resource owner
OAuth 2.0 scope:
- okta.governance.resourceOwner.manage
Admin roles:
- SUPER_ADMIN
Permissions:
- okta.apps.manage
- okta.users.read
- okta.groups.read
Updates a resource owner.
The ID of the resource in ORN format. The resource can be an app, an entitlement value, an entitlement bundle, a collection, or an AI agent. See supported resources.
PATCH
curl -i -X PATCH \
https://subdomain.okta.com/governance/api/v1/resource-owners \
-H 'Content-Type: application/json' \
-d '{
"resourceOrn": "orn:okta:governance:00o11edPwGqbUrsDm0g4:entitlement-bundles:enbogpaj3XUzcM62u1d6",
"data": [
{
"op": "REMOVE",
"path": "/principalOrn",
"value": "orn:okta:directory:00o11edPwGqbUrsDm0g4:users:00u20sfroCwbHQO4a0g"
},
{
"op": "REMOVE",
"path": "/principalOrn",
"value": "orn:okta:directory:00o11edPwGqbUrsDm0g4:users:00u10sfroCwbHQO4a0g"
}
]
}'