Reltio Connect

 View Only
  • 1.  Initiate change request with user roles

    Posted 12-19-2023 02:20

    Hi folks,

    I want to initiate change request while creating a new accounts profile for a Specific user role. the user has role_initiate_change_request , role_worflow and role_api roles.
    When I create a profile with this user. it generates a DCR but I'm unable to find it in Reltio inbox although i can retrieve the request using get DCR API. How to approve those DCRs via UI / API? 

    [
      {
        "uri":"configuration/entityTypes/Accounts",
        "permissions":[
          {
            "role": "ROLE_READ_ONLY_ACCOUNT",
            "access":["READ"]
          },{
            "role": "ROLE_READ_AND_WRITE_ACCOUNT",
            "access":["READ","CREATE","UPDATE"]
          },{
            "role": "ROLE_INITIATE_CHANGE_REQUEST_ACCOUNT",
            "access":["READ","INITIATE_CHANGE_REQUEST"]
          },{
            "role": "ROLE_DATA_STEWARD_ACCOUNT",
            "access":["READ","UPDATE","ACCEPT_CHANGE_REQUEST"]
          }
        ]
      }
    ]


    ------------------------------
    Sabarivasan U
    OneTrust
    ------------------------------


  • 2.  RE: Initiate change request with user roles
    Best Answer

    Posted 12-20-2023 01:24

    The issue is resolved. we need to trigger dcr workflow after creating DCR. then it will show the requests in Reltio Inbox.

    https://{reltio Env url}/nui/workflow/workflow/{tenet id}/processInstances
    Token bearer: access_token
    body: 

    {
        "processType": "dataChangeRequestReview",
        "objectURIs": [
            "entities/{entityID}",
            "changeRequests/{dcrId}"
        ]
    }


    ------------------------------
    Sabarivasan U
    OneTrust
    ------------------------------