GET api/Catalog/State?CountryId={CountryId}
Cátalogo de estados
Request Information
URI Parameters
Name | Description | Type | Additional information |
---|---|---|---|
CountryId |
Identificador de país |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
ResponseModelApiOfListOfStateApiModelName | Description | Type | Additional information |
---|---|---|---|
success |
Indica si la solicitud se procesó de manera satisfactoria |
boolean |
None. |
message |
Mensaje de la solicitud |
string |
None. |
messageDetail |
Lista de mensajes |
Collection of string |
None. |
failureCode |
Código de error en caso de existir |
string |
None. |
data |
Layout de respuesta de la solicitud |
Collection of StateApiModel |
None. |
Response Formats
application/json, text/json
Sample:
{ "success": true, "message": "sample string 2", "messageDetail": [ "sample string 1", "sample string 2" ], "failureCode": "sample string 3", "data": [ { "StateId": 1, "StateName": "sample string 2", "CountryId": 1 }, { "StateId": 1, "StateName": "sample string 2", "CountryId": 1 } ] }
application/xml, text/xml
Sample:
<ResponseModelApiOfListOfStateApiModel xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <success>true</success> <message>sample string 2</message> <messageDetail> <string>sample string 1</string> <string>sample string 2</string> </messageDetail> <failureCode>sample string 3</failureCode> <data> <StateApiModel> <StateId>1</StateId> <StateName>sample string 2</StateName> <CountryId>1</CountryId> </StateApiModel> <StateApiModel> <StateId>1</StateId> <StateName>sample string 2</StateName> <CountryId>1</CountryId> </StateApiModel> </data> </ResponseModelApiOfListOfStateApiModel>