Communications Protocol
Overview
Protocol defines the methods and endpoints for interacting with the platform’s API.
Basic information about the protocol
- communications protocol -
HTTP; - all requests are made to the base address
endpointUrl; - requests are sent using the
POSTmethod; - in the request body there is
JSON, for one of the API methods; - in the
SignHTTP header, a signature must be passed (MD5from the body of aPOSTrequest); - the server sends
JSONin response.