目录

Search

  1. 前言
  2. 业务实体服务简介
  3. Enterprise Java Bean 业务实体服务调用
  4. 具象状态传输业务实体服务调用
  5. 简单对象访问协议业务实体服务调用
  6. 用于交叉引用记录和 BVT 计算的服务
  7. 支持企业关联服务
  8. 清理、分析和转换数据的外部调用
  9. 使用 REST API 添加记录
  10. 使用 REST API 上载文件

业务实体服务指南

业务实体服务指南

请求 URL

请求 URL

使用行 ID 或源系统的名称和源键可以在请求 URL 中指定记录。
读取记录 URL 可以使用以下格式:
带有 rowId 的 URL
指定行 ID 时,请使用以下 URL 格式:
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the root record>
向 URL 发出以下 HTTP GET 请求:
GET http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the 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 record>?depth=n
用于返回子节点的详细信息的 URL
使用以下 URL 格式可返回子节点的详细信息:
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the 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 record>/<node name>
用于返回特定节点的子项详细信息的 URL
使用以下 URL 格式可返回特定节点的子项的详细信息:
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the record>/<node name>?children=<child node name>
用于返回记录的内容元数据的 URL
使用以下 URL 格式返回记录的内容元数据:
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the root record>?contentMetadata=<content metadata type>
例如,您可以使用以下 GET 请求来检索子记录的匹配项:
GET http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the root record>?contentMetadata=MATCH
用于按字段对子元素进行排序的 URL
使用以下 URL 格式可按字段对子元素进行排序:
http://<host>:<port>/<context>/<database ID>/<business entity>/<rowId of the root record>/<node name>?order=-<field name>
使用字符
-
作为后缀可指定降序。