To retrieve a license order information for a given activation key, use the following request:
GET /license-orders/(string:activation_key)/logs
Request parameters
This request retrieves the license order(s) with the specified activation key, of type string.
Query parameters
Query parameters include the following.
Parameter | Type | Required | Definition |
---|---|---|---|
offset | integer | No | Offset |
Example request
GET /license-orders/II1HP-TX8EQ-R1QXZ-7LYXF/logs HTTP/1.1 Authorization: Bearer f794846b7c26621688e1e06164975b4eae8ce2f6
Response
The LAC REST API returns the standard HTTP response codes described in the following table.
Status Code | Description |
---|---|
200 OK | Logs list. |
403 Forbidden | Invalid or expired token provided. |
404 Not Found | License order activation key does not exist. |
Example Response
HTTP/1.1 200 OK Content-Type: application/json [ { "time": "2019-08-20 09:40:35", "action": "Added", "user": "Demo Account", "hostname": "local-pc", "ip_address": "127.0.0.1", "hostids": null }, { "time": "2019-08-20 10:06:26", "action": "Edited", "user": "Demo Account", "hostname": "local-pc", "ip_address": "127.0.0.1", "hostids": null }, { "time": "2019-08-20 13:26:19", "action": "Activation Requested", "user": "End User", "hostname": "local-pc", "ip_address": "127.0.0.1", "hostids": "Hostname: user-pc" } ]