.. index:: Subscription .. _running_subscriptions: Running Subscriptions ===================== A collection of all running subscription fees in the leaf category. .. apifields:: .. apifield:: :name: durationDays :type: int :constraints: positive :required: true The durations of the running subscription in days. .. apifield:: :name: fee :type: int :constraints: positive :required: true The fee of the running subscription in Euro cents. Example ^^^^^^^ .. code-block:: javascript ... "runningSubscriptions": [ { "durationDays": 7, "fee": 1250 }, { "durationDays": 14, "fee": 1750 }, { "durationDays": 28, "fee": 2500 } ] ...