{{#each routes}}
{{this.method}}
{{/each}}
{{#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
{{else}} {{#if this.pathParams}}
Path Parameters
{{/if}} {{/if}} {{/if}} {{#if this.pathParams}}
Path Parameters
{{> type this.pathParams}}
{{/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}}