# Webhook URL Configuration 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. Endpoint: POST /base/callback/url/set Version: v.1.0.0 ## Request fields (application/json): - `eventId` (integer, required) Represents the message type code for push notifications Example: 1001 - `url` (string, required) The webhook URL provided by developers where Keeta system will send notifications Example: "https://open.mykeeta.com/api/open/base/image/upload" - `isTest` (integer, required) Indicates whether this request comes from a test store: - 0: Production store (non-test) - 1: Test store (default value if not specified) Example: 1 ## 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"