{% load custom_filters %}
{{ method|upper }}
{{ path }}
{% if method|upper in "POST,PUT,PATCH" %} {% endif %}
{% if path_params %}

Path Parameters

â„šī¸
{% for param in path_params %}
{% if param.required %} Required {% endif %}
{% if param.description %}
{{ param.description }}
{% endif %}
{% endfor %}
{% endif %}

Query Parameters

â„šī¸
{% for field in query_parameters.filter_fields %} {% endfor %} {% if query_parameters.search_fields %} {% endif %} {% if query_parameters.ordering_fields %} {% endif %} {% for field in query_parameters.pagination_fields %} {% endfor %}

Request Headers

â„šī¸
{% if method|upper in "POST,PUT,PATCH" %}

Request Body

{% endif %}