GET api/CustomerCustomerDemo?filterExpression={filterExpression}
Returns list of all CustomerCustomerDemo Data based on specified filter criteria
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
filterExpression |
Filter expression/criteria |
string |
Required |
Body Parameters
None.
Response Information
Resource Description
Collection of CustomerCustomerDemoDataName | Description | Type | Additional information |
---|---|---|---|
CustomerID | string |
None. |
|
CustomerTypeID | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "CustomerID": "sample string 1", "CustomerTypeID": "sample string 2" }, { "CustomerID": "sample string 1", "CustomerTypeID": "sample string 2" } ]
text/xml
Sample:
<ArrayOfCustomerCustomerDemoData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models"> <CustomerCustomerDemoData> <CustomerID>sample string 1</CustomerID> <CustomerTypeID>sample string 2</CustomerTypeID> </CustomerCustomerDemoData> <CustomerCustomerDemoData> <CustomerID>sample string 1</CustomerID> <CustomerTypeID>sample string 2</CustomerTypeID> </CustomerCustomerDemoData> </ArrayOfCustomerCustomerDemoData>