{% extends "base.html" %} {% block css %} {% endblock %} {% block js %} {% endblock %} {% block "body" %}

JSONRPC

This URL implements the JSON-RPC 2.0 Specification.

To call one of the methods below, send a POST request to this URL containing JSON formatted according to the specification.

Test Call

Enter JSON below and click Send to call a RPC method





Method Documentation


Methods

{%- for group, methods in interface.methods_by_group %} {%- if group %}
${group}
{%- endif %} {% endfor %}
{%- if interface.errors %}

Error Codes

{%- for value in interface.errors %} {%- endfor %}
code label meaning
${value.id} ${value.label} ${value.description}
{%- endif %} {%- for group, methods in interface.methods_by_group %} {%- for method in methods %}

${method.name}{% if method.description %} ${method.description}{% endif %}

{% markup method.doc as 'markdown' %} {%- if method.params %} {%- for attribute in method.params %} {%- endfor %}
Parameters
name description type required? default
${attribute.name} ${attribute.doc} ${attribute.type} ${attribute.required ? "Yes" : "No"} {% if not attribute.required %}${json:attribute.default}{% endif %}
{% else %}

No parameters

{% endif %}

Top

{%- endfor %} {%- endfor %}
{% endblock %}