目次

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応答

次のサンプルは、Personビジネスエンティティ内のルートレコードの詳細を示しています。
{ "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "self" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102?depth=2", "rel": "children" }, { "href": "http://localhost:8080/cmx/request/hm_icons/person_small.jpeg?ors=localhost-orcl-DS_UI1", "rel": "icon" } ], "rowidObject": "102 ", "label": "DARWENT,JIMMY", "partyType": "Person", "statusCd": "A ", "lastName": "DARWENT", "middleName": "N", "firstName": "JIMMY", "displayName": "JIMMY N DARWENT", "genderCd": { "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "parent" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd", "rel": "self" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd?depth=2", "rel": "children" } ], "genderCode": "M" }, "generationSuffixCd": { "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "parent" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/generationSuffixCd?depth=2", "rel": "children" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/generationSuffixCd", "rel": "self" } ], "generationSuffixCode": "I" } }
次のサンプルでは、genderCdベースオブジェクト内の子レコードの詳細が示されています。
{ "link": [ { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102", "rel": "parent" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd/2?depth=2", "rel": "children" }, { "href": "http://localhost:8080/cmx/cs/localhost-orcl-DS_UI1/Person/102/genderCd/2", "rel": "self" } ], "rowidObject": "2 ", "label": "LU Gender", "genderDisp": "MALE", "genderCode": "M" }