POST api/Billing/GetCardData
Request Information
URI Parameters
None.
Body Parameters
CardDetails| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| CustId | integer |
None. |
|
| CustomerName | string |
None. |
|
| City | string |
None. |
|
| GSTNo | string |
None. |
|
| ItemName | string |
None. |
|
| ItemSize | string |
None. |
|
| Quantity | integer |
None. |
|
| Rate | decimal number |
None. |
|
| Total | decimal number |
None. |
|
| CompanyId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"CustId": 2,
"CustomerName": "sample string 3",
"City": "sample string 4",
"GSTNo": "sample string 5",
"ItemName": "sample string 6",
"ItemSize": "sample string 7",
"Quantity": 8,
"Rate": 9.0,
"Total": 10.0,
"CompanyId": "sample string 11"
}
application/xml, text/xml
Sample:
<CardDetails xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardOrderBilling.Models"> <City>sample string 4</City> <CompanyId>sample string 11</CompanyId> <CustId>2</CustId> <CustomerName>sample string 3</CustomerName> <GSTNo>sample string 5</GSTNo> <Id>1</Id> <ItemName>sample string 6</ItemName> <ItemSize>sample string 7</ItemSize> <Quantity>8</Quantity> <Rate>9</Rate> <Total>10</Total> </CardDetails>
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>