Get inspection

Summary

The Get Inspection API endpoint retrieves detailed information for a specific inspection. By supplying the inspection's unique identifier, this endpoint returns a complete record with all relevant data for the specified inspection.

Endpoint Specification

get
Authorizations
Path parameters
idstring · uuidRequired
Query parameters
api-versionstringOptional
Responses
200

Returns an Inspection

get
/api/v1/Inspections/{id}
GET /api/v1/Inspections/{id} HTTP/1.1
Host: 
Authorization: Bearer YOUR_SECRET_TOKEN
Accept: */*
{
  "Id": "123e4567-e89b-12d3-a456-426614174000",
  "Status": "Pending",
  "InspectorEmail": "text",
  "DateCreated": "2025-11-07T15:58:31.450Z",
  "StartTime": "2025-11-07T15:58:31.450Z",
  "EndTime": "2025-11-07T15:58:31.450Z",
  "SystemReference": "text",
  "InspectionTypeId": "123e4567-e89b-12d3-a456-426614174000",
  "InspectionType": "text",
  "ClientId": "123e4567-e89b-12d3-a456-426614174000",
  "ClientName": "text",
  "CustomReference": "text",
  "Occupier": {
    "Forename": "text",
    "Surname": "text",
    "Mobile": "text",
    "Email": "text"
  },
  "Property": {
    "Line1": "text",
    "Line2": "text",
    "Line3": "text",
    "Town": "text",
    "County": "text",
    "Postcode": "text",
    "Latitude": "text",
    "Longitude": "text"
  },
  "InspectionOutcome": {
    "Conclusion": "text",
    "Outcome": "text"
  },
  "Areas": [
    {
      "Name": "text",
      "SubAreas": [
        {
          "Name": "text",
          "Summary": "text",
          "Notes": [
            {
              "Id": "123e4567-e89b-12d3-a456-426614174000",
              "Rag": "NoStatus",
              "Text": "text",
              "Image": {
                "Url": "text",
                "Latitude": "text",
                "Longitude": "text"
              },
              "Video": {
                "Url": "text",
                "ThumbnailUrl": "text"
              }
            }
          ]
        }
      ]
    }
  ],
  "ReviewFields": [
    {
      "Label": "text",
      "Value": "text"
    }
  ]
}

Last updated