Request
{{ request["method"] }}
(
{# Params by Position #}
{% if by_position %}
{% for param in request["params"] %}
{{ macros.color_value(param, expand_params) }}
{% if not loop.last %}
,
{% endif %}
{% endfor %}
{# Params by Name #}
{% else %}
{% for name, value in request["params"].items() %}
{# Open Indent Block #}
{% if expand_params %}
{% endif %}
{# Param Name and Value #}
{{ name }}
=
{{ macros.color_value(value, expand_params) }}
{% if not loop.last %}
,
{% endif %}
{# Close Indent Block #}
{% if expand_params %}
{% endif %}
{% endfor %}
{% endif %}
)