GET api/Customers/{cid}/UncommittedOrders

Request Information

URI Parameters

NameDescriptionTypeAdditional information
cid

integer

Required

Body Parameters

None.

Response Information

Resource Description

Collection of CustomerOrderSummaryDTO
NameDescriptionTypeAdditional information
CustomerId

integer

None.

OrderId

integer

None.

SalesRep

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "CustomerId": 1,
    "OrderId": 2,
    "SalesRep": "sample string 3"
  },
  {
    "CustomerId": 1,
    "OrderId": 2,
    "SalesRep": "sample string 3"
  }
]

text/html, multipart/form-data, application/zip

Sample:
[{"CustomerId":1,"OrderId":2,"SalesRep":"sample string 3"},{"CustomerId":1,"OrderId":2,"SalesRep":"sample string 3"}]

application/xml, text/xml

Sample:
<ArrayOfCustomerOrderSummaryDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/DentaCad.DTO">
  <CustomerOrderSummaryDTO>
    <CustomerId>1</CustomerId>
    <OrderId>2</OrderId>
    <SalesRep>sample string 3</SalesRep>
  </CustomerOrderSummaryDTO>
  <CustomerOrderSummaryDTO>
    <CustomerId>1</CustomerId>
    <OrderId>2</OrderId>
    <SalesRep>sample string 3</SalesRep>
  </CustomerOrderSummaryDTO>
</ArrayOfCustomerOrderSummaryDTO>