LicenseUsage

The /LicenseUsage resource collection represents all license instances consumed by all plans on the Orchestrator server.

Get License Usage for Server

The HTTP GET request to the /License/Usage/Server endpoint retrieves a list of license instances consumed by all plans on the Orchestrator Server.

SecurityuserAuth or clientAuth
Responses
200

OK

401

Unauthorized request. The authorization header has been expected but not found (or found but expired).

500

Internal server error.

get/api/v7.21/License/Usage/Server
Request samples
Response samples
{
  • "newInstances": 0,
  • "managedInstances": 1
}

Get License Usage for Scope

The HTTP GET request to the /License/Usage/Scopes/{scopeId} endpoint retrieves a list of license instances consumed by a scope selected for plans.

SecurityuserAuth or clientAuth
Request
path Parameters
scopeId
required
string <uuid>

System ID assigned to an Orchestrator scope.

Responses
200

OK

401

Unauthorized request. The authorization header has been expected but not found (or found but expired).

500

Internal server error.

get/api/v7.21/License/Usage/Scopes/{scopeId}
Request samples
Response samples
{
  • "newInstances": 0,
  • "managedInstances": 1
}