# Get DDoS Protection IP Information - DescribeHighProtectGameIPInfo

## Overview

Get DDoS Protection IP Information






## Definition

### Public Parameters

| Parameter Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **Action**     | string  | Corresponding API command name, the current API is `DescribeHighProtectGameIPInfo`.                      | **Yes** |
| **PublicKey**  | string  | The user's public key can be obtained from [Console](https://console.nubexcloud.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 |
|:---|:---|:---|:---|
| **ResourceId** | string | Short Resource ID |**Yes**|
| **Offset** | int | Offset of the starting position of the list, default is 0. |No|
| **Limit** | int | Return data length, default is 50. |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|
| **TotalCount** | int | Total Configured |No|
| **AvailableIPQuota** | int | Available remaining IP quota |No|
| **GameIPInfo** | array[[*GameIpInfoTotal*](#gameipinfototal)] | UDIP Information |No|

#### Data Model


#### GameIpInfoTotal

| Field Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **DefenceIP** | string | UDIP |No|
| **LineType** | string | Line Type |No|
| **Cname** | string | UDIP Cname |No|
| **RuleCnt** | int | Number of rules |No|
| **Status** | string | IP Configuration Status |No|
| **SrcIP** | array[string] | Back-to-source IP list |No|
| **Remark** | string | User mark |No|

## Example

### Request Example
    
```
https://api.nubexcloud.com/?Action=DescribeHighProtectGameIPInfo
&ResourceId="e4376373-e2c6-4062-84ab-c237667b4eb7 "
&Offset=0
&Limit=10
```

### Response Example
    
```json
{
  "Action": "DescribeHighProtectGameIPInfoResponse",
  "AvailableIPQuota": 8,
  "GameIPInfo": [],
  "RetCode": 0,
  "TotalCount": 3
}
```





