FleetbaseFleetbase

Store Locations

Store locations connect a storefront to physical places and operating hours. Use location endpoints to list or inspect where a store can fulfill pickup, delivery, or local service.

The Store Location object

A store location links a storefront to a FleetOps place and operating hours.
Attributes
idstringoptional

Public identifier of the store location.

storestringoptional

Public ID of the store.

store_dataobjectoptional

Store resource when requested.

namestringoptional

Location name.

placeobjectoptional

FleetOps place for the store location.

hoursarray of objectsoptional

Operating hours for the location.

created_attimestampoptional

Time the store location was created.

updated_attimestampoptional

Time the store location was last updated.

The Store Location object
{
  "id": "store_location_7Lk2mQ1",
  "store": "store_3Xb9kL2",
  "name": "Downtown",
  "place": null,
  "hours": [],
  "created_at": "2026-05-07T09:30:00Z",
  "updated_at": "2026-05-07T09:30:00Z"
}
GET/v1/store-locations

Query Store Locations

Returns store locations available through the current storefront or network. Use these locations for browsing, pickup, and fulfillment selection.

GET/v1/store-locations
curl https://api.fleetbase.io/v1/store-locations \
  -H "Authorization: Bearer flb_live_…"
Store Locations | Fleetbase