{% extends "withnav_template.html" %} {% from "components/textbox.html" import textbox %} {% from "components/page-footer.html" import page_footer %} {% block service_page_title %} Callback URL {% endblock %} {% block maincolumn_content %}

Callback URL for received text messages

Text messages you receive can be forwarded to your systems with our callback feature. See our documentation on the format of the callback.

{{ textbox( form.url, width='2-3', hint='Valid https URL' ) }} {{ textbox( form.bearer_token, width='2-3', hint='At least 10 characters' ) }} {{ page_footer( 'Save', back_link=url_for('.service_settings', service_id=current_service.id), back_link_text='Back to settings' ) }}
{% endblock %}