GET api/CustomerInspection?customerID={customerID}&venueID={venueID}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
customerID

integer

Required

venueID

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerInspectionDTO
NameDescriptionTypeAdditional information
ID

integer

None.

CustomerID

integer

None.

CustomerVenueID

integer

None.

Name

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "ID": 1,
    "CustomerID": 2,
    "CustomerVenueID": 3,
    "Name": "sample string 4"
  },
  {
    "ID": 1,
    "CustomerID": 2,
    "CustomerVenueID": 3,
    "Name": "sample string 4"
  }
]

application/xml, text/xml

Sample:
<ArrayOfCustomerInspectionDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DataAccess.DTO">
  <CustomerInspectionDTO>
    <CustomerID>2</CustomerID>
    <CustomerVenueID>3</CustomerVenueID>
    <ID>1</ID>
    <Name>sample string 4</Name>
  </CustomerInspectionDTO>
  <CustomerInspectionDTO>
    <CustomerID>2</CustomerID>
    <CustomerVenueID>3</CustomerVenueID>
    <ID>1</ID>
    <Name>sample string 4</Name>
  </CustomerInspectionDTO>
</ArrayOfCustomerInspectionDTO>