Updating Entitlement Owner Using API

Hi,

I’m trying to add ownership for an entitlement using below request body, But it ended into error.

POST : https://vistraenergy-sb.api.identitynow.com/beta/entitlements/{entitlementID}

[
  {
    "op": "add",
    "path": "/owner/id",
    "value": "d3e95548e961489f9b16eb3047b30242"
  }
]

Try with the following payload and use PATCH instead of POST

[{“op”:“replace”,“path”:“/owner”,“value”:{“name”:“xxxx”,“id”:“yyyy”,“type”:“IDENTITY”}}]

1 Like

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.