目次

Search

  1. はじめに
  2. ビジネスエンティティサービスについて
  3. Enterprise Java Beanビジネスエンティティサービス呼び出し
  4. Representational State Transferビジネスエンティティサービス呼び出し
  5. Simple Object Access Protocolビジネスエンティティサービス呼び出し
  6. 相互参照レコードおよびBVT計算用のサービス
  7. 企業リンケージサービスのサポート
  8. ビジネスエンティティデータをクレンジング、分析、変換するための外部呼び出し
  9. REST APIを使用したビジネスエンティティレコードの追加

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

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

要求URL

要求URL

行ID、またはソースシステムとソースキーを使用して、要求URLにレコードを指定します。
[ビジネスエンティティの読み取り]URLは、次の形式にすることができます。
行IDを指定したURL
行IDを指定する場合は次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity root record>
このURLに対して次のHTTP GET要求を行います。
GET http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity root record>
ソースシステム名とソースキーを指定したURL
ソースシステム名とソースキーを指定する場合は、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<system name>:<source key>
システム名とオブジェクトのグローバルビジネス識別子(GBID)を指定したURL
ソースシステム名とGBIDを指定する場合は、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<system name>:uid:<gbid>
GBIDのみを指定したURL
GBIDのみを指定する場合は次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/:uid:<gbid>
複数のGBIDを指定したURL
複数のGBIDを指定する場合は次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/:one:<gbid>,another:<gbid>
子ノードの詳細を返すURL
子ノードの詳細を返すには、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity record>?depth=n
子ノードの詳細を返すURL
子ノードの詳細を返すには、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity record>?children=<comma separated list of child node names or paths>
例:
children= BillAddresses/Address,Email
特定のノードの詳細を返すURL
特定のノードの詳細を返すには、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity record>/<node name>
特定のノードの子の詳細を返すURL
特定のノードの子の詳細を返すには、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity record>/<node name>?children=<child node name>
レコードのコンテンツメタデータを返すURL
レコードのコンテンツメタデータを返すには、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity root record>?contentMetadata=<content metadata type>
例えば、次のGET要求で、子レコードの一致を取得できます。
GET http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity root record>?contentMetadata=MATCH
子要素をフィールドでソートするURL
子要素をフィールドでソートするには、次のURL形式を使用します。
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the business entity root record>/<node name>?order=-<field name>
-
をサフィックスとして使用すると、降順でソートされます。