追加ストレージリソース状態一覧取得

API情報
API種別メソッドURI対象名称実行
契約GET/:GisServiceCode/additional-storages.json?Item=ResourceStatus&StartIndex=N&Count=M追加ストレージ追加ストレージリソース状態一覧取得同期
  • 指定したGisServiceCodeに所属する追加ストレージのステータス一覧を取得します


リクエストパラメータ

パラメータ必須意味
URLGisServiceCodeP2契約のサービスコードgis########
クエリストリングItem取得するフィールド"ResourceStatus"
 StartIndex StartIndexだけスキップした位置から情報を取得する数値
 Count 取得する情報の最大数数値
レスポンス
フィールドタイプ意味
AdditionalStorageListArray オブジェクトの配列
AdditionalStorageList.ServiceCodeString追加ストレージのサービスコードibg########, ibb########,icb########, icg########
AdditionalStorageList.ResourceStatusStringストレージステータス 
エラーコード
  • このAPIに関する個別エラーはありません。
  • 共通エラーコードはエラーレスポンスを参照して下さい


制限
  • 特になし


サンプル

リクエストボディ

無し

レスポンス (JSON)

{
    "RequestId": "xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx-xxxxxxxx",
    "AdditionalStorageList": [
        {
            "ServiceCode": "ibg#######1",
            "ResourceStatus": "NotAttached"
        },
        {
            "ServiceCode": "ibg#######2",
            "ResourceStatus": "NotAttached"
        },
        {
            "ServiceCode": "ibb#######1",
            "ResourceStatus": "NotAttached"
        }
    ]
}