List Config
Simlessly
# List Config
Simlessly API (v1.0.0): List Config
# POST
https://rsp.simlessly.com/api/v1/config/list (opens new window)
# Parameters of Request
Name | Type | MOC | Description | Example |
---|---|---|---|---|
configName | String | optional | Configuration name | / |
pageParam | PageParam | mandatory | Page parameters | / |
# Example of Request
{
"configName":"configName",
"pageParam": {
"total": 0,
"pageNum": 1,
"pageSize": 10
}
}
# Parameters of Response
Name | Type | MOC | Description | Example |
---|---|---|---|---|
configs | List< String> | Mandatory | List of configuration names | templateRegualr01, templateRegualr02 |
pageParam | PageParam | Mandatory | Page parameters |
# PageParam
Name | Type | MOC | Description | Example |
---|---|---|---|---|
total | Integer | Mandatory | Total number of configuration names | / |
pageNum | Integer | Mandatory | Page number, value range: 1-10000 | / |
pageSize | Integer | Mandatory | Number of configuration names on each page, value range: 1-1000 | / |
# Example of Response
{
"obj":{
"configs": [
"templateRegualr01", "templateRegualr01"
],
"pageParam":{
"total":0,
"pageNum":1,
"pageSize":10
}
},
"success": true,
"msg": "",
"code": "00000"
}