<%include file="header.html"/>

RESTful API documentation

generated on ${when}

<%include file="about.html"/>
% for group in grouped_blocks:

${group.capitalize()}

%if group in modules.keys():

${modules[group]}

% endif
% for b in grouped_blocks[group]: % endfor
Resource Description
${b.method.upper()} ${b.route|h} ${b.description|h}
% endfor % for group in grouped_blocks:

${group.capitalize()}

%if group in modules.keys():

${modules[group]}

% endif
% for b in grouped_blocks[group]:

${b.method.upper()} ${b.route|h}

%if not b.working or b.deprecated:

Warning: service is not working or deprecated

${b.non_working}

%endif

${b.description|n}

%if len(b.params) > 0:

Parameters

%for param in b.params: %endfor
${param.paramtype.upper()} ${param.name}
%if param.required: required %else: optional %endif
${param.type} ${param.rest}
%endif

Returns

${b.returns}

%if len(b.examples) > 0:

Examples

%for e in b.examples: ${e.type}
${e.getcode()|trim}
%endfor %endif % endfor
% endfor
<%include file="footer.html"/>