Officeworks Stores
Public reference data for all active Officeworks store locations. No authentication is required — this endpoint is intentionally open so integrations can look up valid store IDs before creating collections or SKUs.
List Officeworks Stores
POSTNo auth (public)
https://multicartapi.com/api/v1/settings/officeworks/stores/Return all active Officeworks store locations ordered by state then name.
curl "https://multicartapi.com/api/v1/settings/officeworks/stores/" \
-X POST \
-H "Content-Type: application/json" \
-d '{}'Request body
{}Response
{
"code": 200,
"data": [
{
"store_id": "W411",
"store_name": "Officeworks Carindale",
"address": "1151 Creek Rd, Carindale QLD 4152",
"state": "QLD",
"postcode": "4152",
"phone": "07 3219 1600",
"lat": -27.502345,
"lon": 153.083210,
"status": "active"
}
],
"status": 1
}Notes
No request body is required. Also accepts GET. The view carries no @permission_classes decorator — no API key or session token is needed. Use the returned store_id values (e.g. "W411") when adding SKUs to an Officeworks collection via /schedules/officeworks/sku/create/ or the bulk CSV upload.
