POST api/Customer/VerifyGSTNumber/{gst}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| gst | string |
Required |
Body Parameters
None.
Response Information
Resource Description
TaxpayerInfoVM| Name | Description | Type | Additional information |
|---|---|---|---|
| TaxPayerInfoId | integer |
None. |
|
| RegistrationType | string |
None. |
|
| TradeName | string |
None. |
|
| errorMsg | string |
None. |
|
| GSTINStatus | string |
None. |
|
| GSTIN | string |
None. |
|
| PANNo | string |
None. |
|
| PINCode | string |
None. |
|
| City | string |
None. |
|
| PermanentAddr | string |
None. |
|
| StateCode | string |
None. |
|
| error | boolean |
None. |
|
| message | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"taxPayerInfoId": 1,
"registrationType": "sample string 2",
"tradeName": "sample string 3",
"errorMsg": "sample string 4",
"gstinStatus": "sample string 5",
"gstin": "sample string 6",
"panNo": "sample string 7",
"pinCode": "sample string 8",
"city": "sample string 9",
"permanentAddr": "sample string 10",
"stateCode": "sample string 11",
"error": true,
"message": "sample string 13"
}
application/xml, text/xml
Sample:
<TaxpayerInfoVM xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IMS.VM"> <error>true</error> <message>sample string 13</message> <City>sample string 9</City> <GSTIN>sample string 6</GSTIN> <GSTINStatus>sample string 5</GSTINStatus> <PANNo>sample string 7</PANNo> <PINCode>sample string 8</PINCode> <PermanentAddr>sample string 10</PermanentAddr> <RegistrationType>sample string 2</RegistrationType> <StateCode>sample string 11</StateCode> <TaxPayerInfoId>1</TaxPayerInfoId> <TradeName>sample string 3</TradeName> <errorMsg>sample string 4</errorMsg> </TaxpayerInfoVM>