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
idstringoptionalPublic identifier of the store location.
storestringoptionalPublic ID of the store.
store_dataobjectoptionalStore resource when requested.
namestringoptionalLocation name.
placeobjectoptionalFleetOps place for the store location.
hoursarray of objectsoptionalOperating hours for the location.
created_attimestampoptionalTime the store location was created.
updated_attimestampoptionalTime 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-locationsQuery Store Locations
Returns store locations available through the current storefront or network. Use these locations for browsing, pickup, and fulfillment selection.
GET
/v1/store-locationscurl https://api.fleetbase.io/v1/store-locations \
-H "Authorization: Bearer flb_live_…"