store_update_settings
Update store settings (name, markup, status, etc.).
PATCH the store's settings row. Every field is optional — send only what changes. markup_percent: 0-500. status: 'active' | 'paused' | 'archived'. payout_hold_days: 0-90. Returns next_slug + next_url for deep-linking.
Request
arguments
{
"slug": "string",
"name": "string?",
"markup_percent": "number? // 0-500",
"status": "\"active\" | \"paused\" | \"archived\"?",
"fulfillment_paused": "boolean?",
"payout_hold_days": "number? // 0-90"
}Response
content[0].text (JSON-parsed)
{
"ok": true,
"next_slug": "string",
"next_url": "string"
}Example
tool call
{
"name": "store_update_settings",
"arguments": { "slug": "bravo", "markup_percent": 75 }
}Related tools