{{ #if meta.index }}
{{ /if }}
{{ title }}
{{ #if detail }}
{{{ render detail }}}
{{ /if }}
Contents
{{ #if toc.detail }}
{{{ render toc.detail }}}
{{ /if }}
{{ #if toc.sections }}
{{ #each toc.sections }}
{{ title }}
{{ #if detail }}
{{{ render detail }}}
{{ /if }}
{{ /each }}
{{ else }}
{{ /if }}
{{ #if routes }}
{{ #each routes }}
{{ #if title }}
{{ title }}
{{ else }}
{{ method }} {{ resource }}
{{ /if }}
{{ #if detail }}
{{{ render detail }}}
{{ /if }}
{{ #if attrs }}
Attributes
{{ #each attrs }}
{{ #if (eq @key "scopes") }}
Required ACL scopes:
{{ #each this }}- {{ this }}
{{ /each }}
{{~ /if ~}}
{{ /each }}
{{ /if }}
{{ #if params }}
Query Parameters
{{ #each params }}
| {{~ name ~}} |
{{~ type ~}} |
{{~ render detail ~}} |
{{ /each }}
{{ /if }}
{{ #if examples }}
Examples
{{ #each examples }}
{{ #if title }}
{{ title }}
{{ /if }}
{{ #if detail }}
{{{ render detail }}}
{{ /if }}
{{ #if request }}
{{~ request.data ~}}
{{ #if request.title }}
{{ request.title }}
{{ else }}
Request
{{ /if }}
{{ /if }}
{{ #if response }}
{{~ response.data ~}}
{{ #if response.title }}
{{ response.title }}
{{ else }}
Response
{{ /if }}
{{ /if }}
{{ /each }}
{{ /if }}
{{ /each }}
{{ /if }}