This endpoint allows developer to request comprehensive store details, including:
- Store Name
- Store Images: Includes both effective images (currently displayed) and images in process (pending approval)
- Address Information
- Geolocation Data: Latitude and longitude values
- Business Categories: the primary business classification system for stores registered by merchants on the Keeta platform, structured into two tiers: Primary category (main business focus) and Secondary categories (supplementary services)
- Store Contact Phone Numbers
- Store Status
- Store Business Hours
POST
curl -i -X POST \
https://open.mykeeta.com/api/open/scm/shop/base/get \
-H 'Content-Type: application/json' \
-d '{
"shopId": 466663
}'Successful returns store details.
A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.
| Enum Value | Description |
|---|---|
| 0 | The request was executed successfully. |
| Non-zero value | The request execution failed. Specific error details can be viewed in the message field. |
Example:0
Text description corresponding to the status code, explaining the operation result or error cause to users.
Example:"Success"
Response
{ "code": 0, "message": "Success", "data": { "shopId": 466663, "availableForOrder": true, "name": "string", "enName": "string", "mainPictures": [ … ], "logoUrl": "http://img-ap-hongkong.mykeeta.net/sailorproduct/a1232319d53a2fa1e704d2a2ea016cbb167763.jpg", "address": "新界屯門時代廣場南翼3樓25號舖", "enAddress": "Times Square South Wing, 3/F, Shop 25, Tuen Mun, New Territories", "longitude": 113.9758571, "latitude": 22.3922083, "primaryCategoryList": [ … ], "supportCategoryList": [ … ], "phones": [ … ], "status": 3, "deliveryRestStatus": 1, "pickupRestStatus": 1 } }