PUT api/v2/electrical/inspectionnorms/items/list
ListElectricalInspectionNormItem
Request Information
URI Parameters
None.
Body Parameters
The query
ListElectricalInspectionNormItemQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| ElectricalInspectionNormListId | universally unique identifier |
Required |
|
| NormKind | RelationalExpressionQueryFilterListOfNullableOfElectricalInspectionNormKind |
None. |
|
| Description | StringExpressionQueryFilterList |
None. |
|
| Order | RelationalExpressionQueryFilterListOfNullableOfInt32 |
None. |
|
| Select | ListElectricalInspectionNormItemQuerySelect |
Required |
|
| Sort | Collection of ListElectricalInspectionNormItemQuerySort |
Required Default value: |
|
| PageNumber | integer (32 bits) |
Required Default value: 1 |
|
| PageSize | integer (32 bits) |
Required Default value: 100 |
Request Formats
application/json
Sample:
{
"ElectricalInspectionNormListId": "00000000-0000-0000-0000-000000000000",
"NormKind": {
"Filters": [
{
"Value": "NEN",
"ExpressionKind": "Equal",
"IsIncludeNullValues": true
},
{
"Value": "NEN",
"ExpressionKind": "Equal",
"IsIncludeNullValues": true
}
]
},
"Description": {
"Filters": [
{
"Value": "sample string 1",
"ExpressionKind": "Equal"
},
{
"Value": "sample string 1",
"ExpressionKind": "Equal"
}
]
},
"Order": {
"Filters": [
{
"Value": 1,
"ExpressionKind": "Equal",
"IsIncludeNullValues": true
},
{
"Value": 1,
"ExpressionKind": "Equal",
"IsIncludeNullValues": true
}
]
},
"Select": {
"NormKind": true,
"InspectionKinds": true,
"Name": true,
"Description": true,
"Order": true,
"IsCustomInput": true
},
"Sort": [
"NormKind",
"NormKind"
],
"PageNumber": 1,
"PageSize": 1
}
Response Information
Resource Description
ListElectricalInspectionNormItemQueryResult
ListElectricalInspectionNormItemQueryResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of ListElectricalInspectionNormItemQueryResultItem |
Required |
|
| Count | integer (32 bits) |
Range: inclusive between 0 and 2147483647 |
Response Formats
application/json
Sample:
{
"Items": [
{
"ElectricalInspectionNormItemId": "00000000-0000-0000-0000-000000000000",
"NormKind": "NEN",
"InspectionKinds": [
"None",
"None"
],
"Name": "sample string 1",
"Description": "sample string 2",
"Order": 1,
"IsCustomInput": true
},
{
"ElectricalInspectionNormItemId": "00000000-0000-0000-0000-000000000000",
"NormKind": "NEN",
"InspectionKinds": [
"None",
"None"
],
"Name": "sample string 1",
"Description": "sample string 2",
"Order": 1,
"IsCustomInput": true
}
],
"Count": 1
}