...
If the site uses HTTPS, the API must be accessed via HTTPS as well.
Request Methods
Type | Details | Example |
---|---|---|
JSON POST (Recommended) | The Content-type: application/json field must be passed in the request header for correct data processing on the server. Parameters should be passed in the body of the request in JSON format |
|
Standard POST (Deprecated) | It is transmitted as standard according to HTTP 1.1 specifications (in the request body). The Content-type: multipart/form-data or Content-type: application/x-www-form-urlencoded header must be passed. | param_1=2¶m_2=4 |
All field names and values should be encoded in UTF-8. Responses are also returned in UTF-8 encoding.
...
Responses are always in JSON format and include the following fields:
Field | Meaning | Description |
---|---|---|
status | Indicates the status of the request | Possible values:
|
response | Contains the server's response, dependent on the status and function called. |
JSON POST request example
...
Code Block | ||||
---|---|---|---|---|
| ||||
{ "status": "OK", "response": {"foo": "bar"} } |
...