POST
api/v1/rfq-chart/monthly-history?sellerId={sellerId}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| sellerId | integer |
Required |
|
| clientId | integer |
Required |
Response Information
Description:
Return type: Collection of RFQMOnthlySummaryHistory
Response Formats
application/json, text/json
[
{
"MonthYear": "sample string 1",
"RFQs": 2,
"OrdersPlaced": 3,
"ClientId": 4,
"SellerId": 5
},
{
"MonthYear": "sample string 1",
"RFQs": 2,
"OrdersPlaced": 3,
"ClientId": 4,
"SellerId": 5
}
]
text/html
[{"MonthYear":"sample string 1","RFQs":2,"OrdersPlaced":3,"ClientId":4,"SellerId":5},{"MonthYear":"sample string 1","RFQs":2,"OrdersPlaced":3,"ClientId":4,"SellerId":5}]
application/xml, text/xml
<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>
