{{#each routes}}
{{#if this.name}}

{{this.name}}

{{else}}

{{this.method}}: {{this.path}}

{{/if}} {{#if this.description}}

{{this.description}}

{{/if}} {{#if this.notes}}

{{this.notes}}

{{/if}} {{#if this.auth}}

Strategies: {{this.auth}}

{{/if}}
{{#if this.queryParams}}

Request Parameters

{{else}} {{#if this.payloadParams}}

Request Parameters

{{/if}} {{/if}} {{#if this.queryParams}}

Query Parameters

    {{> type this.queryParams}}
{{/if}} {{#if this.payloadParams}}

Payload Parameters

    {{> type this.payloadParams}}
{{/if}} {{#if this.responseParams}}

Response Parameters

    {{> type this.responseParams}}
{{/if}}
{{/each}}