目次

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を使用したレポートの管理

ビジネスエンティティサービスガイド

ビジネスエンティティサービスガイド

マスタレコードに正しい値を書き込む

マスタレコードに正しい値を書き込む

ビジネスエンティティサービス呼び出しを使用して、正しい値をマスタレコードの書き込む際、値の信頼設定を指定することもできます。信頼設定を指定しない場合、MDM Hubは管理者システム設定を使用します。
管理者信頼設定で正しい値を書き込むためのURLと要求本文の形式は、次のとおりです。
http://<host>:<port>/<context>/<database ID>/<business entity>/<row ID>?systemName=<source system providing the correct value>{ "<field name>": "<correct value>", "$original": { "<field name>": "<current value>", }, "TRUST": { "<field name>": { "trustSetting" : { custom: false } } } }
定義済みの信頼設定で正しい値を書き込むためのURLと要求本文の形式は、次のとおりです。
http://<host>:<port>/<context>/<database ID>/<business entity>/<row ID>?systemName=<source system providing the correct value>{ "<field name>": "<correct value>", "$original": { "<field name>": "<current value>", }, "TRUST": { "firstName": { "trustSetting" : { custom: true, // if custom=true, all other trustSetting fields //are mandatory. If they are not set, //the service will return an error. minimumTrust: <minimum trust percent>, maximumTrust: <maximum trust percent>, timeUnit: "<units for measuring trust decay>", maximumTimeUnits: <number of units>, graphType: "<name of graph type>" } } } }