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.
InspectionBaseInformationV1Name | 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-07-01T13:11:30.7425291+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-07-01T13:11:30.7425291+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:
"96047b45-b653-40e5-8d97-fc87972e943f"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">96047b45-b653-40e5-8d97-fc87972e943f</guid>