curl --location -g --request POST '{{ecommercev2_url}}/plans/' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"name": "Business Pro Plan",
"type": "marketing", // [marketing, economic, translation, industry, commercial, legal, technology]
"trailDays": 14,
"isDefault": false,
"isActive": true,
"expirationDays": 30,
"suspendDays": 7,
"description": "Complete business solution with advanced features and priority support",
"image": "https://example.com/images/business-pro-plan.jpg",
"monthlyPrices": [
{
"currencyId": "507f1f77bcf86cd799439013",
"currencyObject": {
"name": "US Dollar",
"symbol": "$",
"code": "USD"
},
"price": 99.99
},
{
"currencyId": "67f28b2ffb2eb76e57a7f671",
"currencyObject": {
"name": "Euro",
"symbol": "€",
"code": "EUR"
},
"price": 1
}
],
"annualPrices": [
{
"currencyId": "507f1f77bcf86cd799439013",
"currencyObject": {
"name": "US Dollar",
"symbol": "$",
"code": "USD"
},
"price": 29
},
{
"currencyId": "507f1f77bcf86cd799439014",
"currencyObject": {
"name": "Euro",
"symbol": "€",
"code": "EUR"
},
"price": 2
}
],
"features": [
{
"featureId": "67f7676f474c91044565e46b",
"active": true,
"number": 100
},
{
"featureId": "67f7676f474c91044565e46b",
"active": true,
"number": 50
},
{
"featureId": "67f7676f474c91044565e46b",
"active": true,
"number": 1000
}
]
}'