GET
api/v1/get-details-by-comboproductid?ComboOfferId={ComboOfferId}&clientId={clientId}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ComboOfferId | integer |
Required |
|
| clientId | integer |
Required |
Response Information
Description:
Return type: ComboProductDetail
Response Formats
application/json, text/json
{
"MRPPrice": 1.0,
"SellingPrice": 2.0,
"OfferSellingPrice": 3.0,
"ProductName": "sample string 4",
"PurchasePrice": 5.0,
"Capping": 6
}
text/html
{"MRPPrice":1.0,"SellingPrice":2.0,"OfferSellingPrice":3.0,"ProductName":"sample string 4","PurchasePrice":5.0,"Capping":6}
application/xml, text/xml
<ComboProductDetail xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/FDCMSAdminAPI.Models.ComboOffers"> <Capping>6</Capping> <MRPPrice>1</MRPPrice> <OfferSellingPrice>3</OfferSellingPrice> <ProductName>sample string 4</ProductName> <PurchasePrice>5</PurchasePrice> <SellingPrice>2</SellingPrice> </ComboProductDetail>
