List of urban centers using pagination
GET
/api/v1/UrbanCenter/pagedList
This endpoint returns a list of urban centers using pagination including page, pagesize, total records and data, example api/v1/urbancenter/pagedList?page=1&pagesize=10
Parameters
Query Parameters
SortBy
Typestring
SortDirection
Typestring
Page*
Typeinteger
RequiredFormat
"int32"PageSize*
Typeinteger
RequiredFormat
"int32"Responses
OK
application/json
JSON
{
"page": 0,
"pageSize": 0,
"totalRecords": 0,
"pageCount": 0,
"data": [
{
"id": 0,
"cityId": 0,
"code": "string",
"name": "string",
"type": "string",
"longitude": 0,
"latitude": 0
}
]
}