templates/documentation/index.twig line 1

  1. {% extends "base.twig" %}
  2. {% block body %}
  3.     <div class="form-row">
  4.       <div class="col-12 mb-3">
  5.         <h4>Authentication</h4>
  6.         <div>No authentication against the server is required.</div>
  7.       </div>
  8.     </div>
  9.     <div class="form-row">
  10.       <div class="col-12 mb-3">
  11.         <h4>Status Codes</h4>
  12.         <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>
  13.       </div>
  14.     </div>
  15.     <div class="form-row">
  16.       <div class="col-12 mb-3">
  17.         <h4>Endpoints</h4>
  18.         <div>Any call to the API needs to use the base URL {{ app.request.getSchemeAndHttpHost() }}/.</div>
  19.       </div>
  20.     </div>
  21.     <div class="form-row">
  22.       <div class="col-12 mb-3">
  23.         <h4>Providing Arguments for an API Request</h4>
  24.         <div>Any arguments except for the token have to be supplied as GET arguments.</div>
  25.       </div>
  26.     </div>
  27. {% endblock %}