Skip to content

Store Business Hour Update Notification
Webhook

Request

Keeta pushes real-time notifications when either regular business hours or special business hours are modified.

Event ID: 1101

Notes: Both 'business hour' and 'special business hour' applied this endpoint for any updates.

Bodyapplication/jsonrequired
shopIdinteger, (int64)

Store ID

Example:466663
businessHourOfTheWeekobject

Updated business hour

Example:
{ "thu": [ {} ], "tue": [ {} ], "wed": [ {} ], "sat": [ {} ], "fri": [ {} ], "mon": [ {} ], "sun": [ {} ] }
specialBusinessHourArray of objects(SpecialBusinessHourDTO)

Updated special business hour

POST
businessHourUpdateNotification
Payload
{ "shopId": 466663, "businessHourOfTheWeek": { "thu": [], "tue": [], "wed": [], "sat": [], "fri": [], "mon": [], "sun": [] }, "specialBusinessHour": [ {} ] }

Responses

Request executed successfully

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"
Response
{ "code": 0, "message": "Success" }