Versions Compared

Key

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

...

The usr parameter must be passed in the authorization request header, the rule for its formation is:

Code Block
languagexml
usr : Base64(userName + ";" + lowercase(md5(userName+password)) + ";" + lowercase(md5(token)))

...

The GetLicenseIdByAnchor request is made to get the license ID to the licensing system API.

Code Block
languagexml
GetLicenseIdByAnchor?anchor=6:<productGUID>#<restCode>/17

...

An example of filling in the anchor for the R-Keeper 7 XML interface for App 12 product for object 199999993:

Code Block
languagexml
6:655cee55-7bcd-4826-b6e0-a8ccf2017ef3:199999993/17

...

The request will look like:

Code Block
languagexml
https://l.ucs.ru/ls5api/api/License/GetLicenseIdByAnchor?anchor=6%3A655cee55-7bcd-4826-b6e0-a8ccf2017ef3%23199999993/17

...

In response, we will receive information about the active license:

Code Block
languagexml
{"id":"fe4e4c5a-3037-4f0c-8216-7b98be6d87bb","expirationDate":"2020-03-26T00:00:00","qty":1.0}

...

When sending the SaveOrder, PayOrder, MakeRetunGoods commands, the integrated product checks for the availability of license information — license ID — in the database. If the ID is found, an additional LicenseInfo element is added to the XML request.

Code Block
languagexml
<LicenseInfo anchor="6:655cee55-7bcd-4826-b6e0-a8ccf2017ef3#199999993/17" licenseToken="fe4e4c5a-3037-4f0c-8216-7b98be6d87bb">
<LicenseInstance guid="instance_guid" seqNumber="0"/>
</LicenseInfo>

...