<%=apiName %> Documentation
<% routes.forEach(function(route) { %><%=route.name %>
| Parameter | Required | Type | Example | More |
|---|---|---|---|---|
| <%=param.name %> |
<%=param.required %>
|
<%=param.type %> |
<% if (param.example) { %>
<%= param.type === 'enum' ? 'One of' : '' %>
<%=param.example %>
<% } %>
|
<% if (param.more.default) { %>
Default: <%=param.more.default %><% } %> <% if (param.more.regex) { %> Regex: <%=param.more.regex %><% } %> <% if (param.more.values) { %> Values: <%=param.more.values %><% } %> <% if (param.more.min) { %> Min: <%=param.more.min %><% } %> <% if (param.more.max) { %> Max: <%=param.more.max %><% } %> |