목차

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" }