Table of Contents

Search

  1. Preface
  2. Introduction to Business Entity Services
  3. Enterprise Java Bean Business Entity Service Calls
  4. Representational State Transfer Business Entity Service Calls
  5. Simple Object Access Protocol Business Entity Service Calls
  6. Services for Cross-reference Records and BVT Calculations
  7. Supporting Corporate Linkage Service
  8. External Calls to Cleanse, Analyze, and Transform Data
  9. Appendix A: Using REST APIs to Add Records
  10. Appendix B: Using REST APIs to Upload Files
  11. Appendix C: Using REST APIs to Manage Reports

Sample API Request

Sample API Request

The following sample request assigns a user to multiple tasks and adds the same comment to each task:
POST http://localhost:8080/cmx/task/operations/mdmdb3-MDM_SAMPLE { "tasks": [ { "taskId": "urn:b4p2:5351" }, { "taskId": "urn:b4p2:5352" } ], "assignTo": "srmngr1", "comments": "Please take a look at these tasks instead.", "opType": "Assign" }
The following sample request assigns the tasks to different users and adds a different comment to each task:
POST http://localhost:8080/cmx/task/operations/mdmdb3-MDM_SAMPLE { "tasks": [ { "taskId": "urn:b4p2:5351", "assignTo": "srmngr1", "comments": "Please help John take a look at this task." }, { "taskId": "urn:b4p2:5352", "assignTo": "srmngr2" "comments": "Please help Jane take a look at this task." } ], "opType": "Assign" }

0 COMMENTS

We’d like to hear from you!