POST api/v1/rfq-chart/order-placed-history?sellerId={sellerId}&clientId={clientId}

Request Information

URI Parameters
NameDescriptionTypeAdditional information
sellerId

integer

Required

clientId

integer

Required

Response Information

Description:

Return type: Collection of RFQMOnthlySummaryHistory

Response Formats
[
  {
    "MonthYear": "sample string 1",
    "RFQs": 2,
    "OrdersPlaced": 3,
    "ClientId": 4,
    "SellerId": 5
  },
  {
    "MonthYear": "sample string 1",
    "RFQs": 2,
    "OrdersPlaced": 3,
    "ClientId": 4,
    "SellerId": 5
  }
]
[{"MonthYear":"sample string 1","RFQs":2,"OrdersPlaced":3,"ClientId":4,"SellerId":5},{"MonthYear":"sample string 1","RFQs":2,"OrdersPlaced":3,"ClientId":4,"SellerId":5}]
<ArrayOfRFQMOnthlySummaryHistory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.RfqRequest">
  <RFQMOnthlySummaryHistory>
    <ClientId>4</ClientId>
    <MonthYear>sample string 1</MonthYear>
    <OrdersPlaced>3</OrdersPlaced>
    <RFQs>2</RFQs>
    <SellerId>5</SellerId>
  </RFQMOnthlySummaryHistory>
  <RFQMOnthlySummaryHistory>
    <ClientId>4</ClientId>
    <MonthYear>sample string 1</MonthYear>
    <OrdersPlaced>3</OrdersPlaced>
    <RFQs>2</RFQs>
    <SellerId>5</SellerId>
  </RFQMOnthlySummaryHistory>
</ArrayOfRFQMOnthlySummaryHistory>