2017-12-08 10:52:38 +00:00
|
|
|
{% extends "withnav_template.html" %}
|
2019-04-29 11:44:05 +01:00
|
|
|
{% from "components/page-header.html" import page_header %}
|
2017-12-08 10:52:38 +00:00
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% from "components/form.html" import form_wrapper %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{% from "components/components/back-link/macro.njk" import usaBackLink %}
|
2017-12-08 10:52:38 +00:00
|
|
|
|
|
|
|
|
{% block service_page_title %}
|
2017-12-13 10:35:37 +00:00
|
|
|
Callbacks for delivery receipts
|
2017-12-08 10:52:38 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
|
|
|
|
|
{% block backLink %}
|
2023-08-30 11:07:38 -04:00
|
|
|
{{ usaBackLink({ "href": url_for(back_link, service_id=current_service.id) }) }}
|
2021-07-30 18:23:12 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
2017-12-08 10:52:38 +00:00
|
|
|
{% block maincolumn_content %}
|
2023-08-23 16:18:25 -04:00
|
|
|
<div class="grid-row">
|
|
|
|
|
<div class="grid-col-10">
|
2019-04-29 11:44:05 +01:00
|
|
|
|
2021-07-30 18:23:12 +01:00
|
|
|
{{ page_header('Callbacks for delivery receipts') }}
|
2019-04-29 11:44:05 +01:00
|
|
|
|
2023-06-06 15:28:24 -04:00
|
|
|
<p>
|
2017-12-08 10:52:38 +00:00
|
|
|
When you send an email or text message, we can tell you if Notify was able to deliver it.
|
2023-08-08 16:19:17 -04:00
|
|
|
Read the Callbacks section of our <a class="usa-link" href="{{ url_for('main.documentation') }}">API documentation</a> for more information.
|
2017-12-08 10:52:38 +00:00
|
|
|
</p>
|
|
|
|
|
|
2018-09-19 12:39:36 +01:00
|
|
|
{% call form_wrapper() %}
|
2020-08-03 15:10:02 +01:00
|
|
|
{{ form.url(param_extensions={
|
2023-08-17 15:13:26 -04:00
|
|
|
"classes": "",
|
2020-08-03 15:10:02 +01:00
|
|
|
"hint": {"text": "Must start with https://"}
|
|
|
|
|
}) }}
|
|
|
|
|
|
|
|
|
|
{{ form.bearer_token(param_extensions={
|
2023-08-17 15:13:26 -04:00
|
|
|
"classes": "",
|
2020-08-03 15:10:02 +01:00
|
|
|
"hint": {"text": "At least 10 characters"},
|
|
|
|
|
"autocomplete": "new-password"
|
|
|
|
|
}) }}
|
|
|
|
|
|
2019-05-09 16:44:34 +01:00
|
|
|
{{ page_footer('Save') }}
|
2018-09-19 12:39:36 +01:00
|
|
|
{% endcall %}
|
2017-12-08 10:52:38 +00:00
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|