License usage

Query the installed license types and their usage.

Peak concurrent license usage

Query the maximum number of licenses in concurrent use by day.

Request

GET .../api/shared_spaces/1001/license_usage?start_date=2024-10-7&end_date=2024-10-11

Response

{
  "license_usage": {
       "2024-10-7:00:00.000+0000": 1,
       "2024-10-8:00:00.000+0000": 2,
       "2024-10-9:00:00.000+0000": 3,
       "2024-10-10:00:00.000+0000": 4,
       "2024-10-11:00:00.000+0000": 4
       }
       "space_id":1001,
       "start_date": "2024-10-7",
       "end_date": "2024-10-13",
}

Back to top