POST api/Customer/AddGST
Request Information
URI Parameters
None.
Body Parameters
GSTMaster| Name | Description | Type | Additional information |
|---|---|---|---|
| Id | integer |
None. |
|
| Gstper | string |
None. |
|
| CompanyId | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"Id": 1,
"Gstper": "sample string 2",
"CompanyId": "sample string 3"
}
application/xml, text/xml
Sample:
<GSTMaster xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CardOrderBilling.Models"> <CompanyId>sample string 3</CompanyId> <Gstper>sample string 2</Gstper> <Id>1</Id> </GSTMaster>
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>