{{#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.queryParams}}
Query Parameters
    {{#each this.queryParams}}
  • {{this.name}}

    {{#if this.description}}

    {{this.description}}

    {{/if}}

    Type: {{this.type}}

  • {{/each}}
{{/if}} {{#if this.payloadParams}}
Payload Parameters
    {{#each this.payloadParams}}
  • {{this.name}}

    {{#if this.description}}

    {{this.description}}

    {{/if}}

    Type: {{this.type}}

  • {{/each}}
{{/if}}
{{/each}}