GET api/DMS/1/0/GetCountryList?SearchKeyword={SearchKeyword}&PageLimit={PageLimit}&Page={Page}
Obtiene el listado de las ciudades registradas en el sistema.
Información del Request
Parametros de la URI
| Nombre | Descripción | Tipo | Información Adicional |
|---|---|---|---|
| SearchKeyword | string |
N/A |
|
| PageLimit | integer |
N/A |
|
| Page | integer |
N/A |
Parametros del Body
Información del Response
Descripción de los parametros
SFE.Core.Layer.Models.FunctionResultArrayOfKinPOS.API.Model.Global.CountrySimple| Nombre | Descripción | Tipo | Información Adicional |
|---|---|---|---|
| Result | Collection of KinPOS.API.Model.Global.CountrySimple |
N/A |
|
| ResponseCode | string |
N/A |
|
| TotalRecords | integer |
N/A |
Ejemplos de response:
application/json, text/json
Ejemplo:
{
"Result": [
{
"countryId": 1,
"name": "sample string 2",
"prefixCode": "sample string 3",
"flag": "sample string 4",
"phoneMin": "sample string 5",
"phoneMax": "sample string 6",
"isoCode2": "sample string 7",
"isoCode3": "sample string 8"
},
{
"countryId": 1,
"name": "sample string 2",
"prefixCode": "sample string 3",
"flag": "sample string 4",
"phoneMin": "sample string 5",
"phoneMax": "sample string 6",
"isoCode2": "sample string 7",
"isoCode3": "sample string 8"
}
],
"ResponseCode": "sample string 1",
"TotalRecords": 2
}
application/xml, text/xml
Ejemplo:
<FunctionResultArrayOfCountrySimplei_PA7XoTm xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SFE.Core.Layer.Models">
<ResponseCode>sample string 1</ResponseCode>
<Result xmlns:d2p1="http://schemas.datacontract.org/2004/07/KinPOS.API.Model.Global">
<d2p1:CountrySimple>
<d2p1:countryId>1</d2p1:countryId>
<d2p1:flag>sample string 4</d2p1:flag>
<d2p1:isoCode2>sample string 7</d2p1:isoCode2>
<d2p1:isoCode3>sample string 8</d2p1:isoCode3>
<d2p1:name>sample string 2</d2p1:name>
<d2p1:phoneMax>sample string 6</d2p1:phoneMax>
<d2p1:phoneMin>sample string 5</d2p1:phoneMin>
<d2p1:prefixCode>sample string 3</d2p1:prefixCode>
</d2p1:CountrySimple>
<d2p1:CountrySimple>
<d2p1:countryId>1</d2p1:countryId>
<d2p1:flag>sample string 4</d2p1:flag>
<d2p1:isoCode2>sample string 7</d2p1:isoCode2>
<d2p1:isoCode3>sample string 8</d2p1:isoCode3>
<d2p1:name>sample string 2</d2p1:name>
<d2p1:phoneMax>sample string 6</d2p1:phoneMax>
<d2p1:phoneMin>sample string 5</d2p1:phoneMin>
<d2p1:prefixCode>sample string 3</d2p1:prefixCode>
</d2p1:CountrySimple>
</Result>
<TotalRecords>2</TotalRecords>
</FunctionResultArrayOfCountrySimplei_PA7XoTm>