num_of_days: Number of subscription daysoff_days: Days provider doesn't deliver (e.g., ["Fri", "Sat"])original_price: Base price before discountdiscount_percentage: Discount applied to this versiondelivery_price: Delivery feemin_start_date: Earliest date customer can start subscriptionmax_start_date: Latest date customer can start subscriptiondiscount_percentage only applies to the original_price (aka the meals price) but it doesn't apply to the delivery_pricemin_start_date is calculated using the provider's start_after (cutoff hours) and closed_dates. This ensures customers can't subscribe to dates that are too soon or when the provider is closed (National Day for example).city_id (required){
"city_id": 1,
}daily_num_of_items, avg_daily_meal_calories)"Starting from 500 SAR"num_of_days days)original_price - (original_price * discount_percentage / 100)min_start_date to max_start_date)plan_id: The selected plan IDplan_version_id: The selected version IDstart_date (optional): Specific start datemasters and dates arrays showing the daily meal options.start_after: Provider cutoff hours for ordersskip_option_selection: Whether customer must select meal options or receives provider's choicetotal_num_of_items: Total meals in this subscriptionpause_credits: Credits given when subscription is paused (if applicable)num_of_pause_attempts: How many times customer can pausemin_of_pause_days: Minimum pause durationmin_start_date is too far in the futuremin_start_date and max_start_dateclosed_datesoff_days{
"id": 2445,
"name_en": "Keto Plan",
"name_ar": "خطة كيتو",
"description_en": "High protein, low carb meals",
"image": "https://cdn.techrar.com/plans/keto.png",
"daily_num_of_items": 3,
"avg_daily_meal_calories": 1800,
"is_marketplace_active": true,
"is_marketplace_featured": true,
"restaurant": {
"id": 18,
"name_en": "Healthy Kitchen",
"logo": "https://cdn.techrar.com/logos/healthy-kitchen.png"
},
"plan_tags": [
{
"id": 26,
"tag_en": "Keto",
"tag_ar": "كيتو"
}
],
"versions": [
{
"id": 5001,
"num_of_days": 5,
"off_days": ["Fri", "Sat"],
"original_price": 500,
"discount_percentage": 10,
"delivery_price": 0,
"min_start_date": "2025-11-25",
"max_start_date": "2025-12-31",
"total_num_of_items": 15
},
{
"id": 5002,
"num_of_days": 10,
"off_days": ["Fri", "Sat"],
"original_price": 950,
"discount_percentage": 15,
"delivery_price": 0,
"min_start_date": "2025-11-25",
"max_start_date": "2025-12-31",
"total_num_of_items": 30
}
]
}