目录

Search

  1. 前言
  2. 业务实体服务简介
  3. EJB 业务实体服务调用
  4. REST 业务实体服务调用
  5. 适用于 Data Director 的 REST API
  6. SOAP 业务实体服务调用
  7. 交叉引用记录和 BVT 计算服务
  8. 支持企业关联服务
  9. 清理、分析和转换数据的外部调用
  10. 附录 , A: 使用 REST API 添加记录
  11. 附录 , B: 使用 REST API 上载文件
  12. 附录 , C: 使用 REST API 管理报告

业务实体服务指南

业务实体服务指南

示例 API 响应

示例 API 响应

以下示例响应显示了按名字 STEVE 搜索的结果:
{ "firstRecord": 1, "recordCount": 2, "pageSize": 10, "item": [ { "Person": { "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/1443", "rel": "self" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/1443?depth=2", "rel": "children" } ], "rowidObject": "1443 ", "label": "CRAIG,STEVE", "partyType": "Person", "lastName": "CRAIG", "firstName": "STEVE", "taxID": "stevecraig ", "displayName": "STEVE CRAIG" } }, { "Person": { "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/285", "rel": "self" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/285?depth=2", "rel": "children" } ], "rowidObject": "285 ", "label": "PEARSON,STEVE", "partyType": "Person", "lastName": "PEARSON", "firstName": "STEVE", "displayName": "STEVE PEARSON" } } ] }