# Update Store Business Hours This endpoint allows updating a store's business hours. 1. To indicate a full-day closure, set both startTime and endTime to 0 in the BusinessHourDTO structure for that day. 2. Within the businessHourOfTheWeek field, business hours must not overlap for any single day. Endpoint: POST /scm/shop/business/hour/effective/update Version: v.1.0.0 ## Request fields (application/json): - `shopId` (integer, required) Store ID Example: 466663 - `businessHourOfTheWeek` (object, required) Merchant's business hours, performed as a map structure. Keys represent days of the week (e.g., "mon", "tue", "wed", "thu", "fri", "sat", "sun"). Values are the business hours for each day. Example: {"mon":[{"startTime":3000,"endTime":17400}],"tue":[{"startTime":3000,"endTime":17400}],"wed":[{"startTime":3000,"endTime":17400}],"thu":[{"startTime":3000,"endTime":17400}],"fri":[{"startTime":3000,"endTime":17400}],"sat":[{"startTime":3000,"endTime":17400}],"sun":[{"startTime":0,"endTime":0}]} ## Response 200 fields (application/json): - `code` (integer, required) A numeric status identifier indicating the result of the interface call, used to determine whether the operation executed successfully. - `message` (string, required) Text description corresponding to the status code, explaining the operation result or error cause to users. Example: "Success"