<ph type="x-smartling-placeholder"></ph>
현재 Apigee Edge 문서를 보고 있습니다.
Apigee X 문서. 정보
소개
조직의 수익 창출 초기 설정의 일환으로 Apigee Edge는 구성 팀은 조직의 수익 창출과 동기화되는 스크립트를 실행하여 에지 API 서비스를 사용하여 만든 개발자, 애플리케이션, 제품에 대한 기본 정보를 제공합니다.
일정 기간 (예: 몇 개월)이 지난 후 주기적으로 해당 데이터를 수익 창출과 재동기화하여 데이터가 동기화되도록 하는 것이 좋습니다. 나 다음을 동기화할 수 있습니다.
를 통해 개인정보처리방침을 정의할 수 있습니다.API를 사용하여 조직 동기화
조직을 동기화하려면 GET 요청을 실행하여
/organizations/{org_name}/sync-organization
조직을 동기화하면
또한 관리자는 Gmail을 사용하여 조직의 모든 제품, 개발자, 애플리케이션을
childEntities=true
를 쿼리 매개변수 및 값으로 지정합니다.
예를 들어 다음 요청은 조직을 동기화하고 애플리케이션, 애플리케이션, 애플리케이션 등
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-organization?childEntities=true" \ -u email:password
응답은 다음과 같아야 합니다(응답의 일부만 표시됨).
Synchronization 4G organization with mint, started at, Mon Sep 09 17:48:22 UTC 2013 Child entities sync is, true Synchronizing {org_name} Organization found in mint, merging... Saving {org_name} Saved Synchronization 4G products with mint, started at, Mon Sep 09 17:45:26 UTC 2013 Found 4 products. Synchronizing location Product found in mint, merging... Saving location Saved location Synchronizing search Product found in mint, merging... Saving search Saved search Synchronizing messaging Product found in mint, merging... Saving messaging Saved messaging Synchronizing payment Product found in mint, merging... Saving payment Saved payment Synchronization job finished at, Mon Sep 09 17:45:26 UTC 2013 Synchronization 4G products with mint, started at, Mon Sep 09 17:33:20 UTC 2013 Found 11 developers. Synchronizing dev51@myorg.com Developer found in mint, merging... Saving dev51@myorg.com Saved dev51@myorg.com ... Synchronization job finished at, Mon Sep 09 17:33:31 UTC 2013 Synchronization 4G products with mint, started at, Mon Sep 09 17:15:32 UTC 2013 Found 6 applications. Synchronizing dev-four-test-app Application found in mint, merging... Saving dev-four-test-app Saved dev-four-test-app ... Synchronization job finished at, Mon Sep 09 17:15:34 UTC 2013
API를 사용하여 제품 동기화
제품을 동기화하려면 GET 요청을 실행하여
/organizations/{org_name}/sync-products
예를 들면 다음과 같습니다.
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-products" \ -u email:password
API를 사용하여 개발자 동기화
개발자를 동기화하려면 GET 요청을 실행하여
/organizations/{org_name}/sync-developers
예를 들면 다음과 같습니다.
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-developers" \ -u email:password
API를 사용하여 애플리케이션 동기화
애플리케이션을 동기화하려면 GET 요청을 실행하여
/organizations/{org_name}/sync-applications
예를 들면 다음과 같습니다.
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-applications" \ -u email:password