{% extends "withnav_template.html" %} {% from "components/email-message.html" import email_message %} {% from "components/sms-message.html" import sms_message %} {% from "components/api-key.html" import api_key %} {% block page_title %} API integration – GOV.UK Notify {% endblock %} {% block maincolumn_content %}

API info

{% if 'email' == template.template_type %} {{ email_message( template.formatted_subject_as_markup, template.formatted_as_markup, ) }} {% elif 'sms' == template.template_type %}
{{ sms_message( template.formatted_as_markup, ) }}
{% endif %}
{{ api_key(template.id, name="Template ID", thing='template ID') }}
{% if personalisation %}

Personalisation (all fields are required)

{{ personalisation|syntax_highlight_json }} {% endif %}


See the developer documentation for full details.

{% endblock %}