GET api/Country/getall?api={api}&page={page}&limit={limit}&keyword={keyword}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| api | string |
Required |
|
| page | integer |
Default value is 1 |
|
| limit | integer |
Default value is 50 |
|
| keyword | string |
Default value is |
Body Parameters
None.
Response Information
Resource Description
objCountry| Name | Description | Type | Additional information |
|---|---|---|---|
| data | Collection of CountryModel |
None. |
|
| time |
Thời gian server trả về |
integer |
None. |
| status |
Trạng thái |
string |
None. |
| message |
Thông báo |
string |
None. |
| codemessage |
Mã lỗi |
string |
None. |
| page |
Trang số |
integer |
None. |
| totalpage |
Tổng số trang |
decimal number |
None. |
| totalrecord |
Tổng số bản ghi |
decimal number |
None. |
Response Formats
application/json, text/json
Sample:
{
"data": [
{
"id": "sample string 1",
"idcountry": "sample string 2",
"code": "sample string 3",
"zipcode": "sample string 4",
"name": "sample string 5",
"othername": "sample string 6",
"icon": "sample string 7",
"ordering": 1,
"notuse": true
},
{
"id": "sample string 1",
"idcountry": "sample string 2",
"code": "sample string 3",
"zipcode": "sample string 4",
"name": "sample string 5",
"othername": "sample string 6",
"icon": "sample string 7",
"ordering": 1,
"notuse": true
}
],
"time": 1,
"status": "sample string 2",
"message": "sample string 3",
"codemessage": "samplestring3",
"page": 5,
"totalpage": 6.1,
"totalrecord": 7.1
}
text/javascript, application/javascript, application/json-p
Sample:
/**/ typeof === 'function' && ({"data":[{"id":"sample string 1","idcountry":"sample string 2","code":"sample string 3","zipcode":"sample string 4","name":"sample string 5","othername":"sample string 6","icon":"sample string 7","ordering":1,"notuse":true},{"id":"sample string 1","idcountry":"sample string 2","code":"sample string 3","zipcode":"sample string 4","name":"sample string 5","othername":"sample string 6","icon":"sample string 7","ordering":1,"notuse":true}],"time":1,"status":"sample string 2","message":"sample string 3","codemessage":"samplestring3","page":5,"totalpage":6.1,"totalrecord":7.1});
application/xml, text/xml
Sample:
<objCountry xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models.Library.mg">
<codemessage xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">samplestring3</codemessage>
<message xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">sample string 3</message>
<page xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">5</page>
<status xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">sample string 2</status>
<time xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">1</time>
<totalpage xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">6.1</totalpage>
<totalrecord xmlns="http://schemas.datacontract.org/2004/07/APISMART.Models">7.1</totalrecord>
<data>
<CountryModel>
<Id>sample string 1</Id>
<code>sample string 3</code>
<icon>sample string 7</icon>
<idcountry>sample string 2</idcountry>
<name>sample string 5</name>
<notuse>true</notuse>
<ordering>1</ordering>
<othername>sample string 6</othername>
<zipcode>sample string 4</zipcode>
</CountryModel>
<CountryModel>
<Id>sample string 1</Id>
<code>sample string 3</code>
<icon>sample string 7</icon>
<idcountry>sample string 2</idcountry>
<name>sample string 5</name>
<notuse>true</notuse>
<ordering>1</ordering>
<othername>sample string 6</othername>
<zipcode>sample string 4</zipcode>
</CountryModel>
</data>
</objCountry>