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": "2026-02-08T22:57:33.3347141+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>2026-02-08T22:57:33.3347141+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:
"38be8768-fa97-4564-ad5c-71efde8f0603"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">38be8768-fa97-4564-ad5c-71efde8f0603</guid>