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-22T01:00:47.0373393+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-22T01:00:47.0373393+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:
"ab9fd31e-9d22-4c4f-8139-f0cfead77fa6"
application/xml, text/xml
Sample:
<guid xmlns="http://schemas.microsoft.com/2003/10/Serialization/">ab9fd31e-9d22-4c4f-8139-f0cfead77fa6</guid>