Versions Compared

Key

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

Table of Contents

*(Under Review for V2)

Introduction

The license endpoint allows you to track the number of licenses found on your devices..

How Does it Work?

 

Creating a Licenses Entry

A License entry can be created using the web interface if the current user logged in has a role that contains the licenses::create permission. Go to menu: Manage -> Licenses -> Create Licenses. Also can be created from the Licenses View, using the "Create" button.

To create an entry to track your licenses you have to provide a name, an organization, the number of licenses acquired and the name of the software. On the field "Match String" you have to provide the name of the software that you want to track, you can use the percent sign (%) as a wildcard in the match_string.

 

Image Modified

 

Image Modified

View License Details

Go to menu:  Manage -> Licenses -> List Licenses.

You will see a list of Licenses. You can view a License by clicking on the blue view icon.

You can also edit or delete the licenses.

 Image Modified

 

Database Schema

The schema for the database is below. It can also be found in the application if the user has database::read permission by going to menu: Manage -> Database -> List Database, then clicking on the "licenses" table.

Code Block
themeEclipse
languagetext
CREATE TABLE `licenses` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `org_id` int(10) unsigned NOT NULL DEFAULT '1',
  `org_descendants` enum('y','n') NOT NULL DEFAULT 'y',
  `purchase_count` int(10) unsigned NOT NULL DEFAULT '0',
  `used_count` int(10) unsigned NOT NULL DEFAULT '0',
  `description` text NOT NULL,
  `match_string` text NOT NULL,
  `edited_by` varchar(200) NOT NULL DEFAULT '',
  `edited_date` datetime NOT NULL DEFAULT '2000-01-01 00:00:00',
  PRIMARY KEY (`id`)
 ) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8;

A typical entry looks as below.

Code Block
themeEclipse
languagetext
             id: 3
           name: Microsoft Office 2013 Professional Plus
         org_id: 2
 org_descendants: y
 purchase_count: 45
     used_count: 0
    description: Microsoft Office 2013 Professional Plus for Mgmt Staff
   match_string: %Microsoft Office 2013%
      edited_by: Administrator
    edited_date: 2017-01-21 08:57:30

API / Web Access

You can access the /summaries collection licenses collection using the normal Open-AudIT JSON based API. Just like any other collection. Please see the API documentation for further details.

Access is provided as part of a roles permissions. Summaries is Licenses is a standard resource and can have create, read, update and delete permissions.

The API routes below are usable from both a JSON Restful API and the web interface. The Web application routes are specifically designed to be called from the web interface (a browser).

API Routes

Request Method
ID
Action
Resulting Function
Permission Required
URL Example
Notes
Example Response
POSTn createsummarieslicenses::create/summarieslicensesInsert a new summaries entrynew license entry. licenses_create.json
GETy readsummarieslicenses::read/summarieslicenses/{id}Returns a summaries detailsa license details. licenses_read.json
PATCHy updatesummarieslicenses::update/summarieslicenses/{id}Update an attribute of a summaries entrya license entry. licenses_update.json
DELETEy deletesummarieslicenses::delete/summarieslicenses/{id}Delete a summaries license entry. licenses_delete.json
GETn collectionsummarieslicenses::read/summarieslicensesReturns a list of summaries. 
POSTnimportimportsummaries::create/summaries/importImport multiple connections using a CSV. 
of licenses.licenses_collection.jsonGETyexecuteexecutesummaries::read/summaries/2/executeExecute (run) a summary and show the result. 

Web Application Routes

Displays a standard web form for submission to POST /summaries/import.
Request Method
ID
Action
Resulting Function
Permission Required
URL Example
Notes
GETncreatecreate_formsummarieslicenses::create/summarieslicenses/createDisplays a standard web form for submission to POST /summarieslicenses.
GETyupdateupdate_formsummarieslicenses::update/summarieslicenses/{id}/updateShow the summaries license details with the option to update attributes using PATCH to /summarieslicenses/{id}GETnimportimport_formsummaries::create/summaries/import