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

Callbacks

See our documentation on the format of the callback.

{% if can_receive_inbound %} {{ textbox( form.inbound_url, width='1-1', hint='Valid https URL' ) }} {{ textbox( form.inbound_bearer_token, width='2-3', hint='At least 10 characters' ) }} {% endif %} {{ textbox( form.outbound_url, width='1-1', hint='Valid https URL' ) }} {{ textbox( form.outbound_bearer_token, width='2-3', hint='At least 10 characters' ) }} {{ page_footer( 'Save', back_link=url_for('.api_integration', service_id=current_service.id), back_link_text='Back to API integration' ) }}
{% endblock %}