{% load rest_framework %}
{% render_markdown link.description %}
{% if link.fields|with_location:'path' %}The following parameters should be included in the URL path.
Parameter | Description |
---|---|
{{ field.name }} {% if field.required %} required{% endif %} | {% if field.schema.description %}{{ field.schema.description }}{% endif %} |
The following parameters should be included as part of a URL query string.
Parameter | Description |
---|---|
{{ field.name }} {% if field.required %} required{% endif %} | {% if field.schema.description %}{{ field.schema.description }}{% endif %} |
The following parameters should be included as HTTP headers.
Parameter | Description |
---|---|
{{ field.name }} {% if field.required %} required{% endif %} | {% if field.schema.description %}{{ field.schema.description }}{% endif %} |
The request body should be "{{ link.encoding }}"
encoded, and should contain a single item.
Parameter | Description |
---|---|
{{ field.name }} {% if field.required %} required{% endif %} | {% if field.schema.description %}{{ field.schema.description }}{% endif %} |
The request body should be a "{{ link.encoding }}"
encoded object, containing the following items.
Parameter | Description |
---|---|
{{ field.name }} {% if field.required %} required{% endif %} | {% if field.schema.description %}{{ field.schema.description }}{% endif %} |