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
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"
        ]
      }
    }
  ]
}