Apigee Edge データを収益化と同期させる

<ph type="x-smartling-placeholder"></ph> 現在、Apigee Edge のドキュメントが表示されています。
Apigee X のドキュメント
詳細

はじめに

Apigee Edge は、組織の収益化の初期設定の一環として、 構成チームがスクリプトを実行して、組織の収益化や デベロッパー、アプリケーション、およびプロダクト。

一定期間(数か月など)、その後定期的に データを収益化して再同期して、データの同期を確保するとよいでしょう。マイページ 同期できるもの:

で確認できます。

API を使用した組織の同期

組織を同期するには、GET リクエストを次のアドレスに発行します。 /organizations/{org_name}/sync-organization。組織を同期すると、 組織内のすべてのプロダクト、デベロッパー、アプリケーションを クエリ パラメータと値として 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。例:

$ 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