Get GeoJSON FeatureCollection for client
Path parameters
-
clientId
string Required The client ID to retrieve features for
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"
]
}
}
]
}