proposal.approve
Approve a submitted proposal and start applying its items in order (store owner only).
- scope:
proposals:approve - storefront-visible (bumps the catalog generation): no
- destructive: no
Payload
| field | type | required | notes |
|---|---|---|---|
proposalId | string (/^prp_[0-9A-HJKMNP-TV-Z]{26}$/) | yes | |
expectedItemCount | integer (1..500) | yes |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"type": "object",
"properties": {
"proposalId": {
"type": "string",
"pattern": "^prp_[0-9A-HJKMNP-TV-Z]{26}$"
},
"expectedItemCount": {
"type": "integer",
"minimum": 1,
"maximum": 500
}
},
"required": [
"proposalId",
"expectedItemCount"
],
"additionalProperties": false
}Generated from the live platform registries at build time โ reference pages cannot go stale. Markdown variant: /reference/commands/proposal.approve.md