POST v5/waveModule/{moduleId}/moduleFeature/summary
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| moduleId | integer |
Required |
Body Parameters
GridModel_v5| Name | Description | Type | Additional information |
|---|---|---|---|
| FilterId | integer |
None. |
|
| PageNumber |
Page number |
integer |
None. |
| RowsPerPage |
Rows Per Page |
integer |
None. |
| SortCriteria |
Filter criteria |
Collection of GridSortModel |
None. |
| FilterCriteria |
Filter criteria |
Collection of GridFilterModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"filterId": 1,
"pageNumber": 1,
"rowsPerPage": 2,
"sortCriteria": [
{
"columnName": "sample string 1",
"sortDirection": "sample string 2"
},
{
"columnName": "sample string 1",
"sortDirection": "sample string 2"
}
],
"filterCriteria": [
{
"columnName": "sample string 1",
"operator": "sample string 2",
"searchValue": "sample string 3",
"combinationLogic": "sample string 4"
},
{
"columnName": "sample string 1",
"operator": "sample string 2",
"searchValue": "sample string 3",
"combinationLogic": "sample string 4"
}
]
}
Response Information
Resource Description
WaveModuleFeatureListModel_v5| Name | Description | Type | Additional information |
|---|---|---|---|
| PageCount | integer |
None. |
|
| TotalRecordCount | integer |
None. |
|
| WaveModuleFeatureRow | Collection of WaveModuleFeatureRowModel_v5 |
None. |
Response Formats
application/json, text/json
Sample:
{
"pageCount": 1,
"totalRecordCount": 2,
"waveModuleFeatureRow": [
{
"moduleFeatureId": 1,
"moduleFeature": "sample string 2",
"routeName": "sample string 3",
"sortOrder": 4,
"showInWorkOrder": true,
"showFlags": true,
"recordTime": true,
"isIncluded": true
},
{
"moduleFeatureId": 1,
"moduleFeature": "sample string 2",
"routeName": "sample string 3",
"sortOrder": 4,
"showInWorkOrder": true,
"showFlags": true,
"recordTime": true,
"isIncluded": true
}
]
}