Updated the callbacks page to add the link to new documentation.

This commit is contained in:
Pete Herlihy
2017-11-03 16:10:26 +00:00
committed by GitHub
parent 55093691f1
commit 60a39b2e49

View File

@@ -3,27 +3,27 @@
{% from "components/page-footer.html" import page_footer %} {% from "components/page-footer.html" import page_footer %}
{% block service_page_title %} {% block service_page_title %}
Inbound api Callback URL
{% endblock %} {% endblock %}
{% block maincolumn_content %} {% block maincolumn_content %}
<div class="grid-row"> <div class="grid-row">
<div class="column-five-sixths"> <div class="column-five-sixths">
<h1 class="heading-large">API endpoint for received text messages</h1> <h1 class="heading-large">Callback URL for received text messages</h1>
<p> <p>
This is the https url that the inbound SMS messages will be posted to Text messages you receive can be forwarded to your systems with our callback feature.
and the bearer token used in the authorisation header of the request. See our <a href="{{ url_for('.callbacks') }}">documentation on the format of the callback</a>.
</p> </p>
<form method="post"> <form method="post">
{{ textbox( {{ textbox(
form.url, form.url,
width='2-3', width='2-3',
hint='Valid https url' hint='Valid https URL'
) }} ) }}
{{ textbox( {{ textbox(
form.bearer_token, form.bearer_token,
width='1-4', width='2-3',
hint='At least 10 characters' hint='At least 10 characters'
) }} ) }}
{{ page_footer( {{ page_footer(
@@ -35,4 +35,4 @@
</div> </div>
</div> </div>
{% endblock %} {% endblock %}