{{ resource.name }}
Back to Top
{{ resource_root }}/{{ app }}/{{ version }}/{{ resource.slug }}/
{% if resource.is_deprecated %}
DEPRECATED: {{ resource.is_deprecated }}
{% endif %}
{% if resource.get %}
GET
{% with resource.get as descriptor %}
{% include 'sharrock/descriptor_body.html' %}
{% endwith %}
{% endif %}
{% if resource.post %}
POST
{% with resource.post as descriptor %}
{% include 'sharrock/descriptor_body.html' %}
{% endwith %}
{% endif %}
{% if resource.put %}
PUT
{% with resource.put as descriptor %}
{% include 'sharrock/descriptor_body.html' %}
{% endwith %}
{% endif %}
{% if resource.delete %}
DELETE
{% with resource.delete as descriptor %}
{% include 'sharrock/descriptor_body.html' %}
{% endwith %}
{% endif %}