Retrieves specific details of a single store.
Endpoint URL: /api/v1/store/stores/{store}
Method: GET
Parameters: store (Path parameter: ID or slug of the store)
curl -X GET "http://localhost:8000/api/v1/store/stores/1" \
-H "Accept: application/json" \
-H "Authorization: Bearer YOUR_TOKEN"
Retrieves available store categories.
Endpoint URL: /api/v1/store/store-categories
Method: GET
Parameters: None required
curl -X GET "http://localhost:8000/api/v1/store/store-categories" \
-H "Accept: application/json"
Retrieves products for a specific store.
Endpoint URL: /api/v1/store/products
Method: GET
Parameters: store_id (Query parameter to filter products by store)
curl -X GET "http://localhost:8000/api/v1/store/products?store_id=1" \
-H "Accept: application/json"
Retrieves promotional offers.
Endpoint URL: /api/v1/store/offers
Method: GET
Parameters: store_id (Query parameter to filter offers by store)
curl -X GET "http://localhost:8000/api/v1/store/offers?store_id=1" \
-H "Accept: application/json"