Get Country List
Get Country List
api/Location
Query String
| Parameter | Required | Value |
|---|---|---|
| action | Mandatory | 1 |
| start | Optional | User Input |
Request Header
| Parameter | Required | Value |
|---|---|---|
| TokenKey | Mandatory | User Input |
| Page | Optional | User Input |
| PerPage | Optional | User Input |
Response
| Content | List of Country |
Example of Response
TokenKey → Your-Key[
{
"CountryID": 14,
"CountryName": "India"
}
]Country Entity
| Property Name | Data Type |
|---|---|
| CountryID | Integer |
| CountryName | String |
Remarks:
-
For getting all records at a time do not add Page parameter in request header.
-
Use PerPage parameter to change maximum number of records per page during population of paginated data; by default, each page contains at most 10 records at a time.
-
Response header parameter Accept–Ranges will not come with paginated data and other response header parameters will not come for all records population.
-
If the paginated result is empty, then response header parameter Max–Page will be 0 (zero) and there will be no other page related response header parameter.
-
Add start in query string only for filtering country list by CountryName.
Updated about 1 year ago
