GET api/user/{id}/inspectioncomponents?UpdatedAt={UpdatedAt}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| id | globally unique identifier |
Required |
|
| UpdatedAt | date |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of InspectionComponent| Name | Description | Type | Additional information |
|---|---|---|---|
| ComponentId | integer |
None. |
|
| InspectionId | integer |
None. |
|
| DateInspected | date |
None. |
|
| ComponentComment | string |
None. |
|
| UserId | string |
None. |
|
| InspectionComponentGroupId | integer |
None. |
|
| NotInspected | boolean |
None. |
|
| NotInspectedComment | string |
None. |
|
| Id | integer |
None. |
|
| UpdatedAt | date |
None. |
|
| MajorVersion | integer |
None. |
|
| MinorVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ComponentId": 1,
"InspectionId": 2,
"DateInspected": "2025-11-08T12:11:03.0654353+00:00",
"ComponentComment": "sample string 3",
"UserId": "sample string 4",
"InspectionComponentGroupId": 1,
"NotInspected": true,
"NotInspectedComment": "sample string 6",
"Id": 7,
"UpdatedAt": "2025-11-08T12:11:03.0654353Z",
"MajorVersion": 1,
"MinorVersion": 1
},
{
"ComponentId": 1,
"InspectionId": 2,
"DateInspected": "2025-11-08T12:11:03.0654353+00:00",
"ComponentComment": "sample string 3",
"UserId": "sample string 4",
"InspectionComponentGroupId": 1,
"NotInspected": true,
"NotInspectedComment": "sample string 6",
"Id": 7,
"UpdatedAt": "2025-11-08T12:11:03.0654353Z",
"MajorVersion": 1,
"MinorVersion": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfInspectionComponent xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Api.DataModels">
<InspectionComponent>
<MajorVersion>1</MajorVersion>
<MinorVersion>1</MinorVersion>
<UpdatedAt>2025-11-08T12:11:03.0654353Z</UpdatedAt>
<Id>7</Id>
<ComponentComment>sample string 3</ComponentComment>
<ComponentId>1</ComponentId>
<DateInspected>2025-11-08T12:11:03.0654353+00:00</DateInspected>
<InspectionComponentGroupId>1</InspectionComponentGroupId>
<InspectionId>2</InspectionId>
<NotInspected>true</NotInspected>
<NotInspectedComment>sample string 6</NotInspectedComment>
<UserId>sample string 4</UserId>
</InspectionComponent>
<InspectionComponent>
<MajorVersion>1</MajorVersion>
<MinorVersion>1</MinorVersion>
<UpdatedAt>2025-11-08T12:11:03.0654353Z</UpdatedAt>
<Id>7</Id>
<ComponentComment>sample string 3</ComponentComment>
<ComponentId>1</ComponentId>
<DateInspected>2025-11-08T12:11:03.0654353+00:00</DateInspected>
<InspectionComponentGroupId>1</InspectionComponentGroupId>
<InspectionId>2</InspectionId>
<NotInspected>true</NotInspected>
<NotInspectedComment>sample string 6</NotInspectedComment>
<UserId>sample string 4</UserId>
</InspectionComponent>
</ArrayOfInspectionComponent>