GET api/GetStateNameByStateCode?stateCode={stateCode}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| stateCode | string |
Required |
Body Parameters
None.
Response Information
Resource Description
ApiPostResponseOfStateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Data | StateModel |
None. |
|
| Success | boolean |
None. |
|
| Message | Collection of string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Data": {
"STATE_ID": 1,
"STATE_NAME": "sample string 2",
"STATE_CODE": "sample string 3",
"COUNTRY_ID": 4
},
"Success": true,
"Message": [
"sample string 1",
"sample string 2"
]
}