Placeholders used in Notification Templates for specific Event Handlers

The table lists the Placeholders that can be used in Notification Templates only for specific Event Handlers (see Creating an Event Handler):

Event HandlerPlaceholderDescription
Account changedaccount.human_status_nameCurrent status of the Account
Password reset requesttokenUnique sequrity code used for authentication
User invitationinviter.short_nameName of a User that has sent the invitation
invite_urlLink that allows the invited person to go to Customer Control Panel
Verify emailconfirmation_urlLink for confirmation of an email that was specified during registration in Customer Control Panel
Manager password reset requestmanager.name

Name of the Manager, who requested the password resetting

hostURL of the Reseller installation, the Manager of which requested the password resetting
After subscription expirationDAYS_PASSEDNumber of days passed after the Subscription has expired
Upload CSP price csp_price_file.accepted_atDate when the new base prices for Microsoft Office 365 Plans were applied
Subscription changedsubscription['notification_settings']['office365']['password']Automatically generated password to the Microsoft Office 365 control panel, which is sent to customer after the first order of Microsoft Azure or Microsoft Office 365 Subscription
subscription['notification_settings']['office365']['login']Customer login to Microsoft Office 365 control panel
Net cost has been changed

price_changed_total
Total amount of Plans, for which the net cost has been changed
price_changed_time
Date and time of net cost changing in Plans
plans[].nameNames of Plans, for which the net cost has been changed
plans[].idIDs of Plans, for which the net cost has been changed
plans[].linkLinks to Plans, for which the net cost has been changed
price_list.linkLink to Price list section
Payment due date is comingpayment.days_leftNumber of days prior to the end of the Payment expiration period
payment.idPayment ID
payment.totalTotal amount of Payment for the Invoice including discount and Corrections (see Viewing details of the Invoice for the Postpay charging model)
payment.expiration_datePayment due date
payment.created_atPayment creation date
payment.statusPayment current status
payment.commentAdditional information about the Payment
payment.subscriptions

Iterator that allows to display an array of Subscriptions that are related to the Payment

{% for subscription in payment.subscriptions %}
<tr>
<td>{{ subscription.id }}</td>
<td>{{ subscription.name }}</td>
<td>{{ subscription.status }}</td>
</tr>
{% endfor %}

subscription.idID of the Subscription from the array of the Subscriptions related to the Payment (see Paying for the Subscriptions that are linked to the Invoice for the Postpay charging model). It is used along with the payment.subscriptions iterator (see the example above)
subscription.nameName of the Subscription from the array of the Subscriptions related to the Payment. It is used along with the payment.subscriptions iterator (see the example above)
subscription.statusStatus of the Subscription from the array of the Subscriptions related to the Payment. It is used along with the payment.subscriptions iterator (see the example above)