templates/documentation/index.twig line 1
{% extends "base.twig" %}
{% block body %}
<div class="form-row">
<div class="col-12 mb-3">
<h4>Authentication</h4>
<div>No authentication against the server is required.</div>
</div>
</div>
<div class="form-row">
<div class="col-12 mb-3">
<h4>Status Codes</h4>
<div>Any successful calls to the API will be returned with HTTP status code 200. Any failed requests will be returned with HTTP status code 400.</div>
</div>
</div>
<div class="form-row">
<div class="col-12 mb-3">
<h4>Endpoints</h4>
<div>Any call to the API needs to use the base URL {{ app.request.getSchemeAndHttpHost() }}/.</div>
</div>
</div>
<div class="form-row">
<div class="col-12 mb-3">
<h4>Providing Arguments for an API Request</h4>
<div>Any arguments except for the token have to be supplied as GET arguments.</div>
</div>
</div>
{% endblock %}