POST v1/Clients/{clientId}/Inspections
Creates an inspection based on the provided InspectionBaseInformation.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| clientId |
Client identifier. |
globally unique identifier |
Required |
Body Parameters
The inspection.
InspectionBaseInformationV1| Name | Description | Type | Additional information |
|---|---|---|---|
| FacilityId |
The facility Id. |
integer |
None. |
| InspectionProfileId |
Gets or sets Inspection Profile Id. |
integer |
None. |
| InspectorId |
Gets or sets the id of the inspector assigned to this inspection. |
integer |
None. |
| InspectionDate |
Gets or sets the date of the inspection. |
date |
None. |
Request Formats
application/json, text/json
Sample:
{
"FacilityId": 1,
"InspectionProfileId": 2,
"InspectorId": 3,
"InspectionDate": "2025-12-04T19:39:03.4330957+00:00"
}
application/xml, text/xml
Sample:
<InspectionBaseInformation xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Inspection.Models"> <FacilityId>1</FacilityId> <InspectionDate>2025-12-04T19:39:03.4330957+00:00</InspectionDate> <InspectionProfileId>2</InspectionProfileId> <InspectorId>3</InspectorId> </InspectionBaseInformation>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
A .
globally unique identifierResponse Formats
application/json, text/json
Sample:
"3e9189d1-85e4-4f35-bd28-519b97b9b9e4"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">3e9189d1-85e4-4f35-bd28-519b97b9b9e4</guid>