Skip to content

Get Store Details

Request

This endpoint allows developer to request comprehensive store details, including:

  1. Store Name
  2. Store Images: Includes both effective images (currently displayed) and images in process (pending approval)
  3. Address Information
  4. Geolocation Data: Latitude and longitude values
  5. 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)
  6. Store Contact Phone Numbers
  7. Store Status
  8. Store Business Hours
Bodyapplication/jsonrequired
shopIdinteger, (int64)required

Unique identifier of the Keeta store

Example:466663
POST
/scm/shop/base/get
curl -i -X POST \
  https://open.mykeeta.com/api/open/scm/shop/base/get \
  -H 'Content-Type: application/json' \
  -d '{
    "shopId": 466663
  }'

Responses

Successful returns store details.

Bodyapplication/json
codeintegerrequired

A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully.

Enum ValueDescription
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
messagestringrequired

Text description corresponding to the status code, explaining the operation result or error cause to users.

Example:"Success"
dataobject(ShopBaseInfo)
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 } }