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 locations for the authenticated storefront context. Network keys receive locations belonging to active member stores for network storefront maps, pickup selection, and multi-store delivery origins; store keys receive only their own locations. Requests without a storefront context receive an error.

Query parameters
querystringoptional

Search member stores and return their matching locations.

taggedstringoptional

Comma-separated member-store tags to match.

idsstringoptional

Comma-separated store-location public IDs to include.

excludestringoptional

Comma-separated store-location public IDs to exclude.

with_storebooleanoptional

Include the location's hydrated member store, logo, and backdrop.

location[latitude]numberoptional

Customer latitude used to calculate and order location distance.

location[longitude]numberoptional

Customer longitude used to calculate and order location distance.

limitintegeroptional

Maximum number of locations to return; defaults to 30.

offsetintegeroptional

Number of matching locations to skip.

GET/v1/store-locations
curl https://api.fleetbase.io/v1/store-locations?query=&tagged=&ids=&exclude=&with_store=true&location%5Blatitude%5D=&location%5Blongitude%5D=&limit=&offset= \
  -H "Authorization: Bearer flb_live_…"
Store Locations | Fleetbase