License Details

This request returns the details of a license.

Endpoints

  • GET /licenses/{licenseID}

Url

licenseID

The ID of the license

Header

Authorization

Bearer {token} (User authorization needed)

Response

A JSON object with the license details

see format in the example below

Example request


 GET https://api.paramate.trinckle.com/licenses/ab75027b-cdf6-4867-a0ad-e9495be8d8da
 -H Authorization: Bearer eyJhbGciOiJIUzI1Ni ... 3H8gC1k2DIKNEeJpb72yvmdY

 

Output


 HTTP/1.1 200 OK
 {
     "UUID": "ab75027b-cdf6-4867-a0ad-e9495be8d8da",
     "name": "Test",
     "userUUID": "e14390b7-c874-41d8-a65e-6d9de482a336",
     "type": "free",
     "maxApps": 10,
     "info": "automatically generated basic license",
     "createdAt": "2018-08-30 14:15:10",
     "updatedAt": "2018-09-01 18:20:03"
  }
 

See also