GET api/CustomerCustomerDemo?filterExpression={filterExpression}

Returns list of all CustomerCustomerDemo Data based on specified filter criteria

Request Information

URI Parameters

NameDescriptionTypeAdditional information
filterExpression

Filter expression/criteria

string

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerCustomerDemoData
NameDescriptionTypeAdditional 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>