Get GeoJSON FeatureCollection for client

GET /geo/2025-1/apps/{clientId}.geojson

Path parameters

  • clientId string Required

    The client ID to retrieve features for

Responses

  • 200 application/geo+json

    Successful GeoJSON response

    Hide response attributes Show response attributes object
    • type string Required

      Value is FeatureCollection.

    • features array[object] Required
      Hide features attributes Show features attributes object
      • id string(uuid) Required
      • type string Required

        Value is Feature.

      • geometry object Required
        Hide geometry attributes Show geometry attributes object
        • type string Required

          Value is Point.

        • coordinates array[number] Required

          At least 2 but not more than 2 elements.

      • properties object Required
        Hide properties attributes Show properties attributes object
        • brand string Required
        • mobilePayment boolean Required
        • vehicleSuitability array[string] Required

          Values are car, van, medium_truck, large_truck, or motorcycle.

        • address object Required
          Hide address attributes Show address attributes object
          • street string Required
          • houseNumber string Required
          • postcode string Required
          • city string Required
          • country string Required
        • fleetCards array[string] Required
GET /geo/2025-1/apps/{clientId}.geojson
curl \
 --request GET 'https://cdn.pace.cloud/geo/2025-1/apps/{clientId}.geojson'
Response examples (200)
{
  "type": "FeatureCollection",
  "features": [
    {
      "id": "string",
      "type": "Feature",
      "geometry": {
        "type": "Point",
        "coordinates": [
          42.0
        ]
      },
      "properties": {
        "brand": "string",
        "mobilePayment": true,
        "vehicleSuitability": [
          "car"
        ],
        "address": {
          "street": "string",
          "houseNumber": "string",
          "postcode": "string",
          "city": "string",
          "country": "string"
        },
        "fleetCards": [
          "string"
        ]
      }
    }
  ]
}