GET v2/AssetInspectionReports/{id}/Get

Get a specific inspection report by id and incude its items

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

The ID of the inspection report

integer

Required

Body Parameters

None.

Response Information

Resource Description

Lhp.EquipmentIntelligence.WebApi.Client.Models.AssetInspectionReportModel
NameDescriptionTypeAdditional information
AssetInspectionReportId

integer

None.

AssetId

integer

None.

InspectionReportId

integer

None.

InspectorName

string

None.

InspectorDate

date

None.

Notes

string

None.

AssetInspectionReportItems

Collection of Lhp.EquipmentIntelligence.WebApi.Client.Models.AssetInspectionReportItemModel

None.

Response Formats

application/json, text/json

Sample:
{
  "AssetInspectionReportId": 1,
  "AssetId": 2,
  "InspectionReportId": 3,
  "InspectorName": "sample string 4",
  "InspectorDate": "2024-09-07T11:04:02.8024352+00:00",
  "Notes": "sample string 6",
  "AssetInspectionReportItems": [
    {
      "AssetInspectionReportId": 1,
      "InspectionReportItemId": 2,
      "Value": "sample string 3",
      "Notes": "sample string 4"
    },
    {
      "AssetInspectionReportId": 1,
      "InspectionReportItemId": 2,
      "Value": "sample string 3",
      "Notes": "sample string 4"
    }
  ]
}