Skip to content

Suspend Store

Request

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.

Bodyapplication/jsonrequired
shopIdinteger, (int64)required

Store ID

Example:466663
POST
/scm/shop/status/rest
curl -i -X POST \
  https://open.mykeeta.com/api/open/scm/shop/status/rest \
  -H 'Content-Type: application/json' \
  -d '{
    "shopId": 466663
  }'

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" }