# Get Physical Data Center List - GetPhysicalIDCList

## Overview

Get all cabinets associated with the physical data center list






## Definition

### Public Parameters

| Parameter Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **Action**     | string  | Corresponding API command name, the current API is `GetPhysicalIDCList`.                      | **Yes** |
| **PublicKey**  | string  | The user's public key can be obtained from [Console](https://console.sigcalcloud.com/uaccount/api_manage)                                             | **Yes** |
| **Signature**  | string  | User signature generated based on public key and API command, see [Signature Algorithm](/docs/api/summary/signature.md)  | **Yes** |

### Request Parameters

| Parameter Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **Region** | string | Region. See [Region and Availability Zone List](/docs/api/summary/regionlist) |**Yes**|
| **Zone** | string | Availability Zone. See [Availability Zone List](/docs/api/summary/regionlist) |**Yes**|
| **ProjectId** | string | Project ID. If not filled, it defaults to the default project. Sub-accounts must fill this in. Please refer to the [GetProjectList API](/docs/api/summary/get_project_list). |No|

### Response Field

| Field Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **RetCode** | int | Return status code. If it is 0, it means successful return. If it is not 0, it means failure. |**Yes**|
| **Action** | string | Operation command name. |**Yes**|
| **Message** | string | Returns an error message, providing detailed description when `RetCode` is non-zero. |No|
| **Data** | array[[*PhysicalIDCList*](#physicalidclist)] | Data Center Information List |No|

#### Data Model


#### PhysicalIDCList

| Field Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **Region** | string | Region |No|
| **UUID** | int | Unique ID |**Yes**|
| **PhysicalRegion** | string | Physical Data Center Area |**Yes**|
| **LogicalAliasName** | string | Logical Alias |**Yes**|
| **LogicalName** | string | Logical Name |**Yes**|
| **IDCOperator** | string | IDC Operator |**Yes**|
| **NetWorkVersion** | string | Network Version |**Yes**|
| **RegionOwner** | string | Owner |**Yes**|
| **ExternalName** | string | Public Network Name |**Yes**|
| **IDCMaintainer** | string | IDC maintenance staff |**Yes**|
| **IDCOperatorContact** | string | Contact Information |**Yes**|
| **IDCOpeningDate** | string | IDC start use date |**Yes**|
| **City** | string | City |**Yes**|
| **ShowOrder** | int | Display Order |**Yes**|
| **AssetOwnerEmail** | string | Owner's Email |**Yes**|
| **AssetOwner** | string | Owner Name |**Yes**|
| **IDCMaintainerEmail** | string | IDC maintenance staff email |**Yes**|
| **BizOwner** | string | BizOwner |**Yes**|
| **BizOwnerEmail** | string | Business Email |**Yes**|
| **LocationOperateStatus** | string | Operational Status |**Yes**|
| **ResourceSeller** | string | Resource Seller |**Yes**|
| **BusinessType** | string | BusinessType |**Yes**|
| **AssetFlag** | boolean | Asset Tagging |**Yes**|
| **Remark** | string | Remarks |**Yes**|
| **LastUpdatePerson** | string | Last Updated By |**Yes**|
| **PhysicalNameCN** | string | Physical Machine Room Chinese Name |No|
| **PhysicalName** | string | Physical Machine Room Name |No|
| **IDCType** | string | Data Center Type |No|
| **RegionId** | string | Region ID |No|
| **AvailableZone** | string | Availability Zone |No|
| **ZoneId** | string | Availability Zone ID |No|
| **IDCAddress** | string | IDC Address |No|

## Example

### Request Example
    
```
https://api.sigcalcloud.com/?Action=GetPhysicalIDCList
&Region=cn-zj
&Zone=cn-zj-01
&ProjectId=NiMWAmFx
```

### Response Example
    
```json
{
  "Action": "GetPhysicalIDCListResponse",
  "Data": [
    "XKCCiDvi"
  ],
  "RetCode": 0
}
```





