Description
For querying the list of system parameters.
- This function is intended for API activators.
- You can select the list of system parameters you want to receive when this interface returns API definition.
Request parameters
Name | Type | Required? | Description |
---|---|---|---|
Action | String | Yes | Operation interface name, which is a required parameter; value: DescribeSystemParameters. |
Return parameters
Name | Type | Description |
---|---|---|
RequestId | String | ID of the current request. |
SystemParams | SystemParamItem | Returned information of system parameters, which is an array consisting of SystemParam. |
Examples
Request example
https://apigateway.cn-qingdao.aliyuncs.com/?Action=DescribeSystemParameters
&<Public request parameters>
Response example
XML
format
<DescribeSystemParametersResponse>
<RequestId>0CCDF65E-6050-412D-AD68-FA3D9196836C</RequestId>
<SystemParameters>
<SystemParameter>
<Description> Client IP address</Description>
<DemoValue>192.168.1.1</DemoValue>
<ParamName>CaClientIp</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
<SystemParameter>
<Description> Request domain name</Description>
<DemoValue>api.aliyun.com</DemoValue>
<ParamName>CaDomain</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
<SystemParameter>
<Description> Request time (Greenwich mean time)</Description>
<DemoValue>2016-01-30T03:53:16Z</DemoValue>
<ParamName>CaRequestHandleTime</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
<SystemParameter>
<Description>ConsumerAppId</Description>
<DemoValue>123456</DemoValue>
<ParamName>CaAppId</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
<SystemParameter>
<Description>RequestId</Description>
<DemoValue>7157EBD9-4684-4827-B3B0-9B32D186819B</DemoValue>
<ParamName>CaRequestId</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
<SystemParameter>
<Description>Http Schema</Description>
<DemoValue>https</DemoValue>
<ParamName>CaHttpSchema</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
<SystemParameter>
<Description> Proxy</Description>
<DemoValue>AliCloudApiGateway</DemoValue>
<ParamName>CaProxy</ParamName>
<ParamType>string</ParamType>
</SystemParameter>
</SystemParameters>
</DescribeSystemParametersResponse>
JSON
format
{
"RequestId": "0CCDF65E-6050-412D-AD68-FA3D9196836C",
"SystemParameters": {
"SystemParameter": [
{
"Description": " Client IP address",
"DemoValue": "192.168.1.1",
"ParamName": "CaClientIp",
"ParamType": "string"
},
{
"Description": " Request domain name",
"DemoValue": "api.aliyun.com",
"ParamName": "CaDomain",
"ParamType": "string"
},
{
"Description": " Request time (Greenwich mean time)",
"DemoValue": "2016-01-30T03:53:16Z",
"ParamName": "CaRequestHandleTime",
"ParamType": "string"
},
{
"Description": "ConsumerAppId",
"DemoValue": "123456",
"ParamName": "CaAppId",
"ParamType": "string"
},
{
"Description": "RequestId",
"DemoValue": "7157EBD9-4684-4827-B3B0-9B32D186819B",
"ParamName": "CaRequestId",
"ParamType": "string"
},
{
"Description": "Http Schema",
"DemoValue": "https",
"ParamName": "CaHttpSchema",
"ParamType": "string"
},
{
"Description": " Proxy",
"DemoValue": "AliCloudApiGateway",
"ParamName": "CaProxy",
"ParamType": "string"
}
]
}
}