This API enables developers to configure webhook URLs for receiving real-time notifications from the Keeta platform regarding orders, stores, menus, and other relevant business events.
The webhook URL provided by developers where Keeta system will send notifications
Example:"https://open.mykeeta.com/api/open/base/image/upload"
POST
curl -i -X POST \
https://open.mykeeta.com/api/open/base/callback/url/set \
-H 'Content-Type: application/json' \
-d '{
"eventId": 1001,
"url": "https://open.mykeeta.com/api/open/base/image/upload",
"isTest": 1
}'Webhook URL configuration result.
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
Response
{ "code": 0, "message": "Success" }