moovexDocs

Get areas with pagination

Retrieve paginated list of areas.

GET/areas

Query Parameters

ParameterTypeRequiredDescription
sortstringNoSort expression (e.g., "name:asc")
limitnumberYes-
pagenumberYes-
searchstringNo-

Example Response

{
  "page": 1,
  "limit": 20,
  "totalPages": 1,
  "totalResults": 2,
  "records": [
    {
      "id": 10,
      "name": "North",
      "type": "restriction"
    },
    {
      "id": 11,
      "name": "South",
      "type": "service"
    }
  ]
}

On this page