Authorization: Bearer ********************curl --location --request POST '/api/v2/tiers' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"name": "free",
"price": 0,
"description": "a description for the free tier",
"duration": "MONTHLY",
"yearly_discount": 0,
"discount_type": "amount",
"features": ["FREE"],
"trial_period": 30
}'{
"success": true,
"message": "Tier Plan saved successfully",
"data": {
"name": "free",
"price": 0,
"description": "a description for the free tier",
"duration": "MONTHLY",
"yearly_discount": 0,
"discount_type": "amount",
"features": "[\"FREE\"]",
"trial_period_in_days": 30,
"created_at": "2024-05-08T02:44:25.089+01:00",
"updated_at": "2024-05-08T02:44:25.090+01:00",
"id": "2"
}
}