Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Idempotently inserts/updates the four standard plans (free, startup, business, enterprise) from features/tariff/tariffCatalogue.ts. Safe to re-run after editing the catalogue. Requires internal admin.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
plansobject[]RequiredidnumberRequiredTariff ID assigned by the database.
codestringRequiredTariff code.
insertedbooleanRequiredTrue if the row was newly inserted, false if updated.
{
"plans": [
{
"id": 0,
"code": "example_code",
"inserted": false
}
]
}POST /bff/tariff/seed-plans
curl -X POST "https://api.bizkithub.com/bff/tariff/seed-plans" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.