Files
localapi-docs/src/templates/markdown_template.md
7000pctAUTO 718f3d6a13
Some checks failed
CI / test (push) Has been cancelled
Initial upload with CI/CD workflow
2026-02-01 16:20:33 +00:00

1.1 KiB

{{ title }}

API Reference

Version: {{ version }}


Endpoints

{% for endpoint in endpoints %}

{{ endpoint.method }} {{ endpoint.path }}

{% if endpoint.deprecated %}

Deprecated

{% endif %}{% if endpoint.summary %} {{ endpoint.summary }}

{% endif %}{% if endpoint.description %} {{ endpoint.description }}

{% endif %}{% if endpoint.tags %} Tags: {% for tag in endpoint.tags %}{{ tag }} {% endfor %}

{% endif %}

Parameters

Name Type Location Required Description
{% for param in endpoint.parameters %}
{{ param.name }} {{ param.schema.type if param.schema else 'any' }} {{ param.in }} {{ 'Yes' if param.required else 'No' }} {{ param.description or '-' }}
{% endfor %}

Responses

Status Description
{% for status, response in endpoint.responses.items() %}
{{ status }} {{ response.description }}
{% endfor %}

{% if endpoint.request_body %}

Request Body

{{ endpoint.request_body|tojson }}

{% endif %}


{% endfor %}