28 lines
855 B
Markdown
28 lines
855 B
Markdown
# 04 Store Integration Audit
|
|
|
|
Source checked: Uber Eats "Store Integration" section shared by you.
|
|
|
|
## Implemented Now
|
|
|
|
- Retrieve all stores:
|
|
- `GET /api/v1/uber/stores`
|
|
- Retrieve store by ID:
|
|
- `GET /api/v1/uber/stores/{storeId}`
|
|
- Retrieve and set online/offline store status:
|
|
- `GET /api/v1/uber/stores/{storeId}/status`
|
|
- `POST /api/v1/uber/stores/{storeId}/status`
|
|
- Retrieve and set date-specific holiday hours:
|
|
- `GET /api/v1/uber/stores/{storeId}/holiday-hours`
|
|
- `POST /api/v1/uber/stores/{storeId}/holiday-hours`
|
|
|
|
## Existing Before
|
|
|
|
- Store hours update route (`PUT /api/v1/uber/stores/hours`)
|
|
- Provisioning routes and store discovery via merchant auth flow
|
|
|
|
## Pending
|
|
|
|
- Exact status payload schema hardening once official request examples are finalized
|
|
- Extended store settings endpoints not yet included in shared doc dump
|
|
|