2019-06-04 11:20:33 +01:00
|
|
|
{% extends "content_template.html" %}
|
2016-01-19 09:55:13 +00:00
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
{% block per_page_title %}
|
2017-11-28 11:58:15 +00:00
|
|
|
Documentation
|
2016-01-19 09:55:13 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2019-06-04 11:20:33 +01:00
|
|
|
{% block content_column_content %}
|
2017-11-28 11:58:15 +00:00
|
|
|
|
2019-03-19 11:30:42 +00:00
|
|
|
<h1 class="heading-large">Documentation</h1>
|
2019-06-04 11:20:33 +01:00
|
|
|
<p>Use the GOV.UK Notify API to send messages automatically.</p>
|
2019-03-19 11:30:42 +00:00
|
|
|
<h2 class="heading-medium">Clients</h2>
|
|
|
|
|
<p>Choose a client to integrate our API with your web application or back-office system. Links to documentation open in a new tab.</p>
|
2018-11-05 15:17:07 +00:00
|
|
|
<ul class="list list-bullet">
|
|
|
|
|
{% for key, label in [
|
|
|
|
|
('java', 'Java'),
|
|
|
|
|
('net', '.NET'),
|
|
|
|
|
('node', 'Node JS'),
|
|
|
|
|
('php', 'PHP'),
|
|
|
|
|
('python', 'Python'),
|
|
|
|
|
('ruby', 'Ruby'),
|
|
|
|
|
] %}
|
|
|
|
|
<li><a href="https://docs.notifications.service.gov.uk/{{ key }}.html" target="_blank" rel="noopener">{{ label }}</a></li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</ul>
|
2016-01-19 09:55:13 +00:00
|
|
|
|
|
|
|
|
{% endblock %}
|