Use this endpoint to suspend store operations. Suspended stores remain hidden from customers until manually reactivated. This endpoint will suspend both delivery and pickup at the same time.
POST
curl -i -X POST \
https://open.mykeeta.com/api/open/scm/shop/status/rest \
-H 'Content-Type: application/json' \
-d '{
"shopId": 466663
}'Request executed successfully
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" }