Updates entitlement settings for a resource
PATCH
- Opt in the resource |tooltip| Updates entitlement settings to opt in the resource to entitlement management feature
- Opt out the resource |tooltip| Updates entitlement settings to opt the resource out of entitlement management
curl -i -X PATCH \
'https://okta-subdomain.pixtulate.com/governance/api/v2/resources/{resourceOrn}/entitlement-settings' \
-H 'Content-Type: application/json' \
-d '{
"status": "OPTED_IN"
}'A successful entitlement settings update operation
The status showing whether the resource is opted in to (enabled) or out of (disabled) entitlement management
| Enum Value | Description |
|---|---|
| OPTING_IN | The resource is in the process of opting in to entitlement management |
| OPTED_IN | The resource is opted in to entitlement management |
| OPTING_OUT | The resource is in the process of opting out of entitlement management |
| OPTED_OUT | The resource is opted out of the entitlement management |
Response
{ "status": "OPTING_IN" }