PUT api/v2/electrical/checklists/items/list
ListElectricalCheckListItem
Request Information
URI Parameters
None.
Body Parameters
The query
ListElectricalCheckListItemQuery| Name | Description | Type | Additional information |
|---|---|---|---|
| ElectricalCheckListId | universally unique identifier |
Required |
|
| Description | StringExpressionQueryFilterList |
None. |
|
| CreateDate | DateTimeOffsetExpressionQueryFilterList |
None. |
|
| Select | ListElectricalCheckListItemQuerySelect |
Required |
|
| Sort | Collection of ListElectricalCheckListItemQuerySort |
Required Default value: |
|
| PageNumber | integer (32 bits) |
Required Default value: 1 |
|
| PageSize | integer (32 bits) |
Required Default value: 100 |
Request Formats
application/json
Sample:
{
"ElectricalCheckListId": "00000000-0000-0000-0000-000000000000",
"Description": {
"Filters": [
{
"Value": "sample string 1",
"ExpressionKind": "Equal"
},
{
"Value": "sample string 1",
"ExpressionKind": "Equal"
}
]
},
"CreateDate": {
"Filters": [
{
"Value": "2025-04-16T15:42:31.506+00:00",
"ExpressionKind": "Equal",
"IsIncludeNullValues": true
},
{
"Value": "2025-04-16T15:42:31.506+00:00",
"ExpressionKind": "Equal",
"IsIncludeNullValues": true
}
]
},
"Select": {
"Kind": true,
"EnableNotApplicable": true,
"EnableObservations": true,
"Description": true,
"PositiveLabelText": true,
"NegativeLabelText": true,
"NotApplicableLabelText": true,
"Order": true
},
"Sort": [
"Kind",
"Kind"
],
"PageNumber": 1,
"PageSize": 1
}
Response Information
Resource Description
ListElectricalCheckListItemQueryResult
ListElectricalCheckListItemQueryResult| Name | Description | Type | Additional information |
|---|---|---|---|
| Items | Collection of ListElectricalCheckListItemQueryResultItem |
Required |
|
| Count | integer (32 bits) |
Range: inclusive between 0 and 2147483647 |
Response Formats
application/json
Sample:
{
"Items": [
{
"ElectricalCheckListItemId": "00000000-0000-0000-0000-000000000000",
"Kind": "DistributionBoard",
"EnableNotApplicable": true,
"EnableObservations": true,
"Description": "sample string 1",
"PositiveLabelText": "sample string 2",
"NegativeLabelText": "sample string 3",
"NotApplicableLabelText": "sample string 4",
"Order": 1
},
{
"ElectricalCheckListItemId": "00000000-0000-0000-0000-000000000000",
"Kind": "DistributionBoard",
"EnableNotApplicable": true,
"EnableObservations": true,
"Description": "sample string 1",
"PositiveLabelText": "sample string 2",
"NegativeLabelText": "sample string 3",
"NotApplicableLabelText": "sample string 4",
"Order": 1
}
],
"Count": 1
}