Skip to content

Query Special Business Hours

Request

This endpoint retrieves a store's currently active special business hours, which temporarily override regular operating hours for specific dates (e.g., holidays, events).

Notes:

  1. Special business hours refer to temporarily adjusted operating schedules for stores on specific dates, such as holidays, special events, or operational changes that differ from regular weekly hours
  2. When configured, these hours automatically override standard schedules during their effective period and seamlessly revert to normal hours after expiration without manual intervention, ensuring continuous and accurate operational information.
Bodyapplication/jsonrequired
shopIdinteger, (int64)required

Store ID

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

Responses

Successful returns special business hours.

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"
dataArray of objects(SpecialBusinessHourDTO)
Response
{ "code": 0, "message": "Success", "data": [ {} ] }