GET api/user/{id}/InspectionComponentGroups?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 InspectionComponentGroup| Name | Description | Type | Additional information |
|---|---|---|---|
| InspectionId | integer |
None. |
|
| GroupName | string |
None. |
|
| Id | integer |
None. |
|
| UpdatedAt | date |
None. |
|
| MajorVersion | integer |
None. |
|
| MinorVersion | integer |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"InspectionId": 1,
"GroupName": "sample string 2",
"Id": 3,
"UpdatedAt": "2025-11-08T12:10:39.922917Z",
"MajorVersion": 1,
"MinorVersion": 1
},
{
"InspectionId": 1,
"GroupName": "sample string 2",
"Id": 3,
"UpdatedAt": "2025-11-08T12:10:39.922917Z",
"MajorVersion": 1,
"MinorVersion": 1
}
]
application/xml, text/xml
Sample:
<ArrayOfInspectionComponentGroup xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/API.Models.Api.DataModels">
<InspectionComponentGroup>
<MajorVersion>1</MajorVersion>
<MinorVersion>1</MinorVersion>
<UpdatedAt>2025-11-08T12:10:39.922917Z</UpdatedAt>
<Id>3</Id>
<GroupName>sample string 2</GroupName>
<InspectionId>1</InspectionId>
</InspectionComponentGroup>
<InspectionComponentGroup>
<MajorVersion>1</MajorVersion>
<MinorVersion>1</MinorVersion>
<UpdatedAt>2025-11-08T12:10:39.922917Z</UpdatedAt>
<Id>3</Id>
<GroupName>sample string 2</GroupName>
<InspectionId>1</InspectionId>
</InspectionComponentGroup>
</ArrayOfInspectionComponentGroup>