# Get IAM Policy List - ListPolicies

## Overview

Get IAM Policy List






## Definition

### Public Parameters

| Parameter Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **Action**     | string  | Corresponding API command name, the current API is `ListPolicies`.                      | **Yes** |
| **PublicKey**  | string  | The user's public key can be obtained from [Console](https://console.scloudsg.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 |
|:---|:---|:---|:---|
| **Owner** | string | Policy Owner |**Yes**|
| **Limit** | string | The number of user groups to be queried |No|
| **Offset** | string | Start querying from which data entry |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|
| **Policies** | array[[*IAMPolicy*](#iampolicy)] | Policy Information |**Yes**|
| **TotalCount** | int | Number of Data Sets |**Yes**|

#### Data Model


#### IAMPolicy

| Field Name | Type | Description Information | Required |
|:---|:---|:---|:---|
| **PolicyName** | string | Policy Name |No|
| **PolicyURN** | string | IAM Policy URN |No|
| **Description** | string | IAM Policy Description |No|
| **Document** | string | IAM Policy Text |No|
| **ScopeType** | string | IAM Permission Policy Application Scope (ScopeRequired: Project Level, ScopeEmpty: Global Level, ScopeUnrestricted: Project Level/Global Level) |No|
| **CreatedAt** | int | IAM Policy Creation Time |No|
| **UpdatedAt** | int | IAM Policy Update Time |No|

## Example

### Request Example
    
```
https://api.scloudsg.com/?Action=ListPolicies
&Owner=yes
&Limit=mUHOGNVA
&Offset=IpyhZLjl
```

### Response Example
    
```json
{
  "Action": "ListPoliciesResponse",
  "Message": "uODHWHNz",
  "Policies": [
    {
      "AttachedAt": 2,
      "CreatedAt": 2,
      "Description": "pTVfFWRp",
      "PolicyName": "naEBahFs",
      "PolicyURN": "orWpoQsP",
      "ProjectID": "GtzRpoIX",
      "Scope": "yes"
    }
  ],
  "RetCode": 0,
  "TotalCount": 3
}
```





