🌐
Request Information
Method
{{ request_info.method }}
Path
{{ request_info.path }}
{% if request_info.query %}
Query String
{{ request_info.query }}
{% endif %}
{% if request_info.headers %}
Request Headers
{% for key, value in request_info.headers %}
- {{ key }}: {{ value }}
{% endfor %}
{% endif %}
{% endif %}