Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Authorization is needed for requests.  Supported authorization type is basic.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 formAuthorization is required in each HTTP request as follows:

Code Block
http://[username]:[password]@[IP-address]:[port]/[prefix]

With the Bearer authorization type, the token received from the web server is used (see Bearer authorization).

POST requests must have JSON body.

...