]
{{! for the tables of content, I cheat and don't use CSS styles.... }}
{{/operations}}
{{/apis}}
{{/apiInfo}}
{{#apiInfo}}
{{#apis}}
{{#operations}}
Up
{{httpMethod}} {{path}}
{{summary}} ({{nickname}})
{{! notes is operation.description. So why rename it and make it super confusing???? }}
{{notes}}
{{#hasPathParams}}
Path parameters
{{#pathParams}}{{>pathParam}}{{/pathParams}}
{{/hasPathParams}}
{{#hasConsumes}}
Consumes
This API call consumes the following media types via the request header:
{{#consumes}}
{{{mediaType}}}
{{/consumes}}
{{/hasConsumes}}
{{#hasBodyParam}}
Request body
{{#bodyParams}}{{>bodyParam}}{{/bodyParams}}
{{/hasBodyParam}}
{{#hasHeaderParams}}
Request headers
{{#headerParams}}{{>headerParam}}{{/headerParams}}
{{/hasHeaderParams}}
{{#hasQueryParams}}
Query parameters
{{#queryParams}}{{>queryParam}}{{/queryParams}}
{{/hasQueryParams}}
{{#hasFormParams}}
Form parameters
{{#formParams}}{{>formParam}}{{/formParams}}
{{/hasFormParams}}
{{#returnType}}
Return type
{{#hasReference}}{{^returnSimpleType}}{{returnContainer}}[{{/returnSimpleType}}
{{returnBaseType}}{{^returnSimpleType}}]{{/returnSimpleType}}{{/hasReference}}
{{^hasReference}}{{returnType}}{{/hasReference}}
{{/returnType}}
{{#hasExamples}}
{{#examples}}
Example data
Content-Type: {{{contentType}}}
{{{example}}}
{{/examples}}
{{/hasExamples}}
{{#hasProduces}}
Produces
This API call produces the following media types according to the request header;
the media type will be conveyed by the response header.
{{#produces}}
{{{mediaType}}}
{{/produces}}
{{/hasProduces}}
Responses
{{#responses}}
{{code}}
{{message}}
{{^containerType}}
{{dataType}}{{/containerType}}
{{#examples}}
Example data
Content-Type: {{{contentType}}}
{{example}}
{{/examples}}
{{/responses}}