CLI
Raw API
Use the API escape hatch for endpoints without dedicated CLI UX.
Prefer native commands. For unsupported endpoints, use the verb-first raw API interface:
nimbu api get /shipping_rates --site=my-shop
nimbu api patch /settings/shipping --site=my-shop --data '{"enabled":true}'
nimbu api post /events/import --data @events.json
cat payload.json | nimbu api put /resource --data ---all follows paginated JSON array responses. Binary responses use --output.
Raw delete requests require --force, like native delete commands.
The legacy --method and --path flags remain supported for compatibility.