POST api/Order/GetOrderMasterData
Request Information
URI Parameters
None.
Body Parameters
OrderMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustId | integer |
None. |
|
| CustomerName | string |
None. |
|
| CompanyName | string |
None. |
|
| City | string |
None. |
|
| MobileNo | string |
None. |
|
| GSTNo | string |
None. |
|
| CompanyId | string |
None. |
|
| ODate | date |
None. |
|
| GrandTotal | decimal number |
None. |
|
| PaidAmt | decimal number |
None. |
|
| Balance | decimal number |
None. |
|
| CDay | string |
None. |
|
| CMonth | string |
None. |
|
| CYear | string |
None. |
|
| PaidStatus | string |
None. |
|
| AdvanceAmt | decimal number |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustId": 2,
"CustomerName": "sample string 3",
"CompanyName": "sample string 4",
"City": "sample string 5",
"MobileNo": "sample string 6",
"GSTNo": "sample string 7",
"CompanyId": "sample string 8",
"ODate": "2025-11-08T15:06:11.1949624+05:30",
"GrandTotal": 10.0,
"PaidAmt": 11.0,
"Balance": 12.0,
"CDay": "sample string 13",
"CMonth": "sample string 14",
"CYear": "sample string 15",
"PaidStatus": "sample string 16",
"AdvanceAmt": 17.0
}
application/xml, text/xml
Sample:
<OrderMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardOrderBilling.Models"> <AdvanceAmt>17</AdvanceAmt> <Balance>12</Balance> <CDay>sample string 13</CDay> <CMonth>sample string 14</CMonth> <CYear>sample string 15</CYear> <City>sample string 5</City> <CompanyId>sample string 8</CompanyId> <CompanyName>sample string 4</CompanyName> <CustId>2</CustId> <CustomerName>sample string 3</CustomerName> <GSTNo>sample string 7</GSTNo> <GrandTotal>10</GrandTotal> <Id>1</Id> <MobileNo>sample string 6</MobileNo> <ODate>2025-11-08T15:06:11.1949624+05:30</ODate> <PaidAmt>11</PaidAmt> <PaidStatus>sample string 16</PaidStatus> </OrderMaster>
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>