# Order Refund Status Change Notification This webhook is designed to inform the developer's system whenever there is a change in the status of an order's refund application on the Keeta platform. 1005 Endpoint: POST orderRefundStatusChangeNotification Version: v.1.0.0 ## Request fields (application/json): - `orderViewId` (integer) Unique identifier for orders on Keeta platform Example: 756823555555859 - `shopId` (integer) Unique identifier of the Keeta store Example: 466663 - `status` (integer) Refund status code Example: 2001 - `afterSaleOrderId` (integer) Unique identifier for the after-sales application Example: 833443425408767 - `isAppeal` (integer) Indicates if this is an appealed refund request - `pictures` (string) The pictures field contains a JSON-formatted array string that stores URLs of images uploaded by customers as evidence for their refund requests. This field supports a maximum of 9 image URLs, with each URL separated by commas and properly escaped within the JSON array structure. Example: "https://img-ap-hongkong.mykeeta.net/sailorproduct/9c760595674b395e330cf94b0e5068b0111111.jpg" - `money` (integer) Refund amount Example: 2800 - `currency` (string) Currency code for the refund amount Example: "HKD" - `applyOpType` (integer) Code representing who initiated the refund request: Example: 10 - `applyReason` (string) Original reason for refund request Example: "xxx" - `handleOpType` (integer) This field represents the code value corresponding to the type of personnel handling this after-sales application: Example: 20 - `handleReason` (string) This field indicates the reason why the after-sales application has been changed to its current status. Example: "Merchant agree refund" - `opTime` (integer) Time when the event occurred, specified as milliseconds since Jan 1, 1970 (Unix epoch) Example: 1751448108144 ## 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"