{% if not resource %}

{{ descriptor.service_name }}

Back to Top

{{ api_root }}/{{ app }}/{{ version }}/{{ descriptor.slug }}/

{% if descriptor.is_deprecated %}

DEPRECATED: {{ descriptor.is_deprecated }}

{% endif %} {% endif %} {% if descriptor.data_parsing %}

This is a data parsing function. Params must be posted as serialized data.

{% endif %} {% if descriptor.security.permissions %}

Permissions: {{ descriptor.security.permissions|join:" " }}

{% endif %}
{{ descriptor.docs|safe }}
{% if descriptor.params %} {% for param in descriptor.params %} {% endfor %}
Parameter Type Required Default Description
{{ param.name }} {{ param.type }} {{ param.required|yesno:"Required,Not Required"}} {{ param.default }} {{ param.description }}
{% endif %}