Apigee Edge のドキュメントを表示しています。
Apigee X のドキュメントに移動。 情報
はじめに
組織の収益化の初期設定の一環として、Apigee Edge 構成チームは、組織の収益化と、Edge API サービスを使用して作成したデベロッパー、アプリケーション、プロダクトと同期するスクリプトを実行します。
一定の期間(数か月など)が経過した後、およびその後定期的に、そのデータを収益化と再同期して、データが同期されていることを確認することをおすすめします。同期できる項目は次のとおりです。
API を使用した組織の同期
組織を同期するには、/organizations/{org_name}/sync-organization
に対して GET リクエストを発行します。組織を同期するときに、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 を使用した商品の同期
商品を同期するには、/organizations/{org_name}/sync-products
に GET リクエストを発行します。例:
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-products" \ -u email:password
API を使用したデベロッパーの同期
デベロッパーを同期するには、/organizations/{org_name}/sync-developers
に GET リクエストを発行します。例:
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-developers" \ -u email:password
API を使用したアプリケーションの同期
アプリケーションを同期するには、/organizations/{org_name}/sync-applications
に GET リクエストを発行します。例:
$ curl -X GET \ "https://api.enterprise.apigee.com/v1/mint/organizations/{org_name}/sync-applications" \ -u email:password