GET api/State/GetAll
Request Information
URI Parameters
None.
Body Parameters
None.
Response Information
Resource Description
GetAllStateResponseName | Description | Type | Additional information |
---|---|---|---|
AllStateList | Collection of StateModel |
None. |
|
ResponseCode | integer |
None. |
|
ResponseText | string |
None. |
Response Formats
application/json, text/json
Sample:
{ "AllStateList": [ { "ID": 1, "Name": "sample string 2", "CountryID": 1, "Country": "sample string 3", "IsActive": true, "UpdatePermission": "sample string 4" }, { "ID": 1, "Name": "sample string 2", "CountryID": 1, "Country": "sample string 3", "IsActive": true, "UpdatePermission": "sample string 4" } ], "ResponseCode": 1, "ResponseText": "sample string 2" }
application/xml, text/xml
Sample:
<GetAllStateResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.Response"> <ResponseCode xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">1</ResponseCode> <ResponseText xmlns="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel">sample string 2</ResponseText> <AllStateList xmlns:d2p1="http://schemas.datacontract.org/2004/07/POS.DTO.DataModel"> <d2p1:StateModel> <d2p1:Country>sample string 3</d2p1:Country> <d2p1:CountryID>1</d2p1:CountryID> <d2p1:ID>1</d2p1:ID> <d2p1:IsActive>true</d2p1:IsActive> <d2p1:Name>sample string 2</d2p1:Name> <d2p1:UpdatePermission>sample string 4</d2p1:UpdatePermission> </d2p1:StateModel> <d2p1:StateModel> <d2p1:Country>sample string 3</d2p1:Country> <d2p1:CountryID>1</d2p1:CountryID> <d2p1:ID>1</d2p1:ID> <d2p1:IsActive>true</d2p1:IsActive> <d2p1:Name>sample string 2</d2p1:Name> <d2p1:UpdatePermission>sample string 4</d2p1:UpdatePermission> </d2p1:StateModel> </AllStateList> </GetAllStateResponse>