GET api/GetStateList

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

ApiResponseOfStateModel
Name Description Type Additional information
Data

Collection of 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
    },
    {
      "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"
  ]
}