Go to documentation repository
HTTP API is represented by web2 module (Web-server 2.0).
Note.
HTTP API allows the following features:
The following notation is used in the examples shown in this section:
Further the description will be omitted when query action is clear in the context.
Important!
Note.
Authorization is needed for requests. Two types of authorization are supported: Basic and Bearer.
With the Basic authorization type, it is necessary to add user data to all HTTP requests in the following form:
http://[username]:[password]@[IP-address]:[port]/web2
With the Bearer authorization type, the token received from the web server is used (see Authorization using a token key).
By default, the response is in the JSON format. The default response in XML format can be enabled on the settings panel of the Web server 2.0 object (see Configuring default response type for HTTP API requests). Also, the response format can be explicitly specified in the Accept header, for example application/json or application/xml. The response format specified in the request has a higher priority than the default response format specified on the settings panel of the Web server 2.0 object.
To perform cross-domain requests or to access the necessary headers in the response (for example, due to CORS browser policy restrictions), it is necessary to specify Origin (the domain of the site from which the request is made) in the request header. In this case, the response will contain the Access-Control-Allow-Origin header, which indicates that the resource can be accessed from the specified domain in a cross-site manner. The Access-Control-Allow-Origin: * header indicates that the resource can be accessed from any domain in a cross-site manner.