POST Quotation/UpdateQuotationWioutLineSheet
Request Information
URI Parameters
None.
Body Parameters
SaveQuotationRequestVM| Name | Description | Type | Additional information |
|---|---|---|---|
| LeadID | integer |
None. |
|
| QuotationID | integer |
None. |
|
| LeadOwnerID | integer |
None. |
|
| UserID | integer |
None. |
|
| CustomerID | integer |
None. |
|
| AvgDisc | decimal number |
None. |
|
| SubTotal | decimal number |
None. |
|
| FinalDiscount | decimal number |
None. |
|
| GST | integer |
None. |
|
| GSTAmount | decimal number |
None. |
|
| GrandTotal | decimal number |
None. |
|
| FollowUpType | string |
None. |
|
| LeadStatusID | string |
None. |
|
| LeadCategoryID | integer |
None. |
|
| NewFollowupDate | date |
None. |
|
| Communication | string |
None. |
|
| Remarks | string |
None. |
|
| QuotationDetails | Collection of QuotationProductModel |
None. |
Request Formats
application/json, text/json
Sample:
{
"LeadID": 1,
"QuotationID": 2,
"LeadOwnerID": 3,
"UserID": 4,
"CustomerID": 5,
"AvgDisc": 6.1,
"SubTotal": 7.1,
"FinalDiscount": 8.1,
"GST": 9,
"GSTAmount": 10.1,
"GrandTotal": 11.1,
"FollowUpType": "sample string 12",
"LeadStatusID": "sample string 13",
"LeadCategoryID": 14,
"NewFollowupDate": "2026-07-18T12:14:08.3118832+05:30",
"Communication": "sample string 15",
"Remarks": "sample string 16",
"QuotationDetails": [
{
"ItemID": 1,
"Description": "sample string 1",
"ApproxArea": "sample string 2",
"Quantity": 3.1,
"UnitID": 4,
"MRP": 5.1,
"DiscPer": 6.1,
"Rate": 7.1,
"Amount": 8.1
},
{
"ItemID": 1,
"Description": "sample string 1",
"ApproxArea": "sample string 2",
"Quantity": 3.1,
"UnitID": 4,
"MRP": 5.1,
"DiscPer": 6.1,
"Rate": 7.1,
"Amount": 8.1
}
]
}
application/xml, text/xml
Sample:
<SaveQuotationRequestVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarmoraInventory.Models">
<AvgDisc>6.1</AvgDisc>
<Communication>sample string 15</Communication>
<CustomerID>5</CustomerID>
<FinalDiscount>8.1</FinalDiscount>
<FollowUpType>sample string 12</FollowUpType>
<GST>9</GST>
<GSTAmount>10.1</GSTAmount>
<GrandTotal>11.1</GrandTotal>
<LeadCategoryID>14</LeadCategoryID>
<LeadID>1</LeadID>
<LeadOwnerID>3</LeadOwnerID>
<LeadStatusID>sample string 13</LeadStatusID>
<NewFollowupDate>2026-07-18T12:14:08.3118832+05:30</NewFollowupDate>
<QuotationDetails>
<QuotationProductModel>
<Amount>8.1</Amount>
<ApproxArea>sample string 2</ApproxArea>
<Description>sample string 1</Description>
<DiscPer>6.1</DiscPer>
<ItemID>1</ItemID>
<MRP>5.1</MRP>
<Quantity>3.1</Quantity>
<Rate>7.1</Rate>
<UnitID>4</UnitID>
</QuotationProductModel>
<QuotationProductModel>
<Amount>8.1</Amount>
<ApproxArea>sample string 2</ApproxArea>
<Description>sample string 1</Description>
<DiscPer>6.1</DiscPer>
<ItemID>1</ItemID>
<MRP>5.1</MRP>
<Quantity>3.1</Quantity>
<Rate>7.1</Rate>
<UnitID>4</UnitID>
</QuotationProductModel>
</QuotationDetails>
<QuotationID>2</QuotationID>
<Remarks>sample string 16</Remarks>
<SubTotal>7.1</SubTotal>
<UserID>4</UserID>
</SaveQuotationRequestVM>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ApiResponseOfObject| Name | Description | Type | Additional information |
|---|---|---|---|
| StatusCode | integer |
None. |
|
| Status | boolean |
None. |
|
| Message | string |
None. |
|
| Data | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"StatusCode": 1,
"Status": true,
"Message": "sample string 3",
"Data": {}
}
application/xml, text/xml
Sample:
<ApiResponseOfanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/VarmoraInventory.Models"> <Data /> <Message>sample string 3</Message> <Status>true</Status> <StatusCode>1</StatusCode> </ApiResponseOfanyType>