Methods:
{% for sections in include.api_data %}
{% assign sorted_methods = sections.methods | sort: 'api_method' %}
{% for method in sorted_methods %}
- {{method.api_method | split: '.' | last}}
{% endfor %}
{% endfor %}
{% 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
{{method.api_method}}
{{ method.purpose | liquify | markdownify }}
Query Parameters JSON
```json
{{method.parameter_json | neat_json}}
```
Expected Response JSON
```json
{{method.expected_response_json | neat_json}}
```
{% 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 %}