POST api/Dashboard/GetSumWithGstData
Request Information
URI Parameters
None.
Body Parameters
BillingMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| OrderId | integer |
None. |
|
| CustId | integer |
None. |
|
| CustomerName | string |
None. |
|
| CompanyName | string |
None. |
|
| City | string |
None. |
|
| MobileNo | string |
None. |
|
| GSTNo | string |
None. |
|
| CompanyId | string |
None. |
|
| CDate | string |
None. |
|
| GrandTotal | decimal number |
None. |
|
| PaidAmt | decimal number |
None. |
|
| Balance | decimal number |
None. |
|
| CDay | string |
None. |
|
| CMonth | string |
None. |
|
| CYear | string |
None. |
|
| TotalGstAmount | decimal number |
None. |
|
| CGST | decimal number |
None. |
|
| SGST | decimal number |
None. |
|
| IGST | decimal number |
None. |
|
| GSTPer | string |
None. |
|
| GSTNonGSt | string |
None. |
|
| PaidDate | date |
None. |
|
| AdvanceAmt | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"OrderId": 2,
"CustId": 3,
"CustomerName": "sample string 4",
"CompanyName": "sample string 5",
"City": "sample string 6",
"MobileNo": "sample string 7",
"GSTNo": "sample string 8",
"CompanyId": "sample string 9",
"CDate": "sample string 10",
"GrandTotal": 11.0,
"PaidAmt": 12.0,
"Balance": 13.0,
"CDay": "sample string 14",
"CMonth": "sample string 15",
"CYear": "sample string 16",
"TotalGstAmount": 17.0,
"CGST": 18.0,
"SGST": 19.0,
"IGST": 20.0,
"GSTPer": "sample string 21",
"GSTNonGSt": "sample string 22",
"PaidDate": "2025-11-08T15:08:56.43737+05:30",
"AdvanceAmt": 24.0
}
application/xml, text/xml
Sample:
<BillingMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardOrderBilling.Models"> <AdvanceAmt>24</AdvanceAmt> <Balance>13</Balance> <CDate>sample string 10</CDate> <CDay>sample string 14</CDay> <CGST>18</CGST> <CMonth>sample string 15</CMonth> <CYear>sample string 16</CYear> <City>sample string 6</City> <CompanyId>sample string 9</CompanyId> <CompanyName>sample string 5</CompanyName> <CustId>3</CustId> <CustomerName>sample string 4</CustomerName> <GSTNo>sample string 8</GSTNo> <GSTNonGSt>sample string 22</GSTNonGSt> <GSTPer>sample string 21</GSTPer> <GrandTotal>11</GrandTotal> <IGST>20</IGST> <Id>1</Id> <MobileNo>sample string 7</MobileNo> <OrderId>2</OrderId> <PaidAmt>12</PaidAmt> <PaidDate>2025-11-08T15:08:56.43737+05:30</PaidDate> <SGST>19</SGST> <TotalGstAmount>17</TotalGstAmount> </BillingMaster>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
ResultModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Status | integer |
None. |
|
| Message | string |
None. |
|
| Response | Object |
None. |
Response Formats
application/json, text/json
Sample:
{
"Status": 1,
"Message": "sample string 2",
"Response": {}
}
application/xml, text/xml
Sample:
<ResultModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardOrderBilling.Models"> <Message>sample string 2</Message> <Response /> <Status>1</Status> </ResultModel>