{% extends "withnav_template.html" %} {% from "components/textbox.html" import textbox %} {% from "components/page-footer.html" import page_footer %} {% from "components/form.html" import form_wrapper %} {% block service_page_title %} Callbacks for received text messages {% endblock %} {% block maincolumn_content %}
When you receive a text message in Notify, we can forward it to your system. Check the callback documentation for more information.
{% call form_wrapper() %} {{ textbox( form.url, width='1-1', hint='Must start with https://' ) }} {{ textbox( form.bearer_token, width='1-1', hint='At least 10 characters', autocomplete='new-password' ) }} {{ page_footer( 'Save', back_link=url_for('.api_callbacks', service_id=current_service.id), back_link_text='Back to settings' ) }} {% endcall %}