Methods:
{% for sections in include.api_data %}
{{ sections.description | liquify | markdownify }}
{% for method in sections.methods %}
{% if method.since %}
- Since: {{method.since}}
{% endif %}
{% if method.deprecated %}
- Deprecated
{% endif %}
{% if method.disabled %}
- Disabled
{% endif %}
{% if method.removed %}
- Removed
{% endif %}
{% if method.client_docs %}
- SDK Reference{% for client_doc in method.client_docs %}{{ client_doc | markdownify }}{% endfor %}
{% endif %}
{% assign keywords = method.api_method | split: '.' | last | split: '_' | join: ' ' | keywordify | escape %}
{% assign search_url = '/search/?q=' | append: keywords %}
- Related
{% if method.removed %}
{{method.api_method}}
{% else %}
{{method.api_method}}
{% endif %}
{{ method.purpose | liquify | markdownify }}
{% if method.parameter_json %}
Query Parameters JSON
```json
{{method.parameter_json | neat_json}}
```
{% endif %}
{% if method.parameter_json %}
Expected Response JSON
```json
{{method.expected_response_json | neat_json}}
```
{% endif %}
{% if method.curl_examples %}
Example curl
{% for curl in method.curl_examples %}
```bash
curl -s --data '{{curl}}' https://api.hive.blog
```
{% endfor %}
{% endif %}
---
{% endfor %}
{% endfor %}