License

Returns the license information for the current user.

HTTP Request

GET /icweb.dll/license

URI Parameters

None

Responses

Name

Type

Description

200 OK

License

OK

License

Contains the license information for the current user.

Name

Type

Description

Optional

license

String

readonly for a readonly only license, write for a write license

No

risk

Bool

True if the user has a license to display the risk module.

No

sensors

Bool

True if the user has a license to display the sensors module.

No

saas

Bool

True if the user has a license to perform SaaS only functions.

No

name

String

Display name of the current user.

No

username

String

Username of the current user.

No

Example

Request

GET /icweb.dll/license

Response

{
        "license": "write",
        "risk": true,
        "sensors": true,
        "saas": true,
        "username": "bob.smith@here.com",
        "name": "Bob Smith"
}