moovexDocs

Get services

Returns paginated services list.

GET/services

Query Parameters

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

Example Response

{
  "page": 1,
  "limit": 20,
  "totalPages": 1,
  "totalResults": 2,
  "records": [
    {
      "id": 1,
      "name": "Standard",
      "type": "private",
      "maxPax": 4,
      "sharedWith": []
    },
    {
      "id": 2,
      "name": "Executive Shuttle",
      "type": "shared",
      "maxPax": 10,
      "sharedWith": [
        "Standard"
      ]
    }
  ]
}

On this page