GET api/Shippers?filterExpression={filterExpression}
Returns list of all Shippers 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 ShippersDataName | Description | Type | Additional information |
---|---|---|---|
ShipperID | integer |
None. |
|
CompanyName | string |
None. |
|
Phone | string |
None. |
Response Formats
application/json, text/json
Sample:
[ { "ShipperID": 1, "CompanyName": "sample string 2", "Phone": "sample string 3" }, { "ShipperID": 1, "CompanyName": "sample string 2", "Phone": "sample string 3" } ]
text/xml
Sample:
<ArrayOfShippersData xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/NorthwindAPI.Models"> <ShippersData> <CompanyName>sample string 2</CompanyName> <Phone>sample string 3</Phone> <ShipperID>1</ShipperID> </ShippersData> <ShippersData> <CompanyName>sample string 2</CompanyName> <Phone>sample string 3</Phone> <ShipperID>1</ShipperID> </ShippersData> </ArrayOfShippersData>