GET v1/Clients/{clientId}/InspectionProfiles/{inspectionProfileId}/Inspectors?facilityId={facilityId}
Gets a list of available Inspectors for a Inspection Profile and Facility.
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
clientId |
Client identifier. |
globally unique identifier |
Required |
inspectionProfileId |
Inspection profile identifier. |
integer |
Required |
facilityId |
Facility identifier. |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list.
Collection of InspectorV1Name | Description | Type | Additional information |
---|---|---|---|
Id |
The inspector Id. |
integer |
None. |
Name |
The inspector name. |
string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "Id": 1, "Name": "sample string 2" }, { "Id": 1, "Name": "sample string 2" } ]
application/xml, text/xml
Sample:
<ArrayOfInspector xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Titan.API.Inspection.Models"> <Inspector> <Id>1</Id> <Name>sample string 2</Name> </Inspector> <Inspector> <Id>1</Id> <Name>sample string 2</Name> </Inspector> </ArrayOfInspector>