Hi, I'm Ask INFA!
What would you like to know?
ASK INFAPreview
Please to access Ask INFA.

Table of Contents

Search

  1. Preface
  2. What's New in Informatica Intelligent Cloud Services
  3. API Center
  4. Administrator
  5. Application Integration
  6. Business 360 Console
  7. Cloud Data Integration for PowerCenter (CDI-PC)
  8. Data Access Management
  9. Data Governance and Catalog
  10. Data Ingestion and Replication
  11. Data Integration
  12. Data Integration Connectors
  13. Data Quality
  14. Data Validation
  15. MDM - Customer 360 SaaS
  16. MDM - Product 360 SaaS
  17. MDM - Reference 360
  18. MDM - Supplier 360 SaaS
  19. Multidomain MDM SaaS
  20. Monitor

What's New

What's New

Modify permissions and create a user for reprocessing master data

Modify permissions and create a user for reprocessing master data

After you import the
MDMProcessMasterData
process, set the process to read only so that users can't modify it. Also, create a user to access the
MDMProcessMasterData
process.
To set the read-only permission for the process and to create a user for the process, use the UpdateACL API and submit a POST request. To submit a POST request, use the following URI with the session ID of the administrator who manages the organization:
<baseApiUrl>/frs/v1/UpdateACL

Sample Request

Use the following POST request to modify the permissions of the
MDMProcessMasterData
process to read only:
POST https://use4-mdm.dm-us.informaticacloud.com/frs/v1/UpdateACL IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX Content-Type: application/json { "artifactId": "9TvdYgWHVOrhUHnMLMCc0z", "aces": [ { "operation": "CREATE_ACE", "permission": { "changePermission": true, "read": true, "update": false, "delete": false, "execute": true }, "idsInfo": { "id": "Organization ID", "type": "ORG" } } ] }
Use the following POST request to create a user to access the
MDMProcessMasterData
process:
POST https://use4-mdm.dm-us.informaticacloud.com/frs/v1/UpdateACL IDS-SESSION-ID: XXXXXXXXXXXXXXXXXXXXXX Content-Type: application/json { "artifactId": "9TvdYgWHVOrhUHnMLMCc0z", "aces": [ { "operation": "CREATE_ACE", "permission": { "changePermission": true, "read": true, "update": true, "delete": true, "execute": true }, "idsInfo": { "id": "USER ID", "type": "USER" } } ] }

Sample Response

After the POST requests to modify the permissions of the
MDMProcessMasterData
process and create a user to access the
MDMProcessMasterData
process are successful, you get the following response:
{ "@odata.context": "$metadata#BaseEntities", "value": [ { "guid": "FRS_ID", "code": "FRS_200", "message": "Successfully Updated ACLs" } ] }

0 COMMENTS

We’d like to hear from you!