Update Store Status (open/closed) Run in API Explorer
Ask AI
This allows a channel to inform Deliverect of any change to a store's status.
POST
/updateStoreStatus
curl \
--request POST 'https://api.staging.deliverect.com/updateStoreStatus' \
--header "Authorization: Bearer $ACCESS_TOKEN" \
--header "Content-Type: application/json" \
--data '{"reason":"Too many failed orders","status":"closed"}'
Request examples
{
"reason": "Too many failed orders",
"status": "closed"
}
Response examples (200)
[
{
"message": "Changed store status"
}
]