Listing License Groups
Service name: list_license_groups
Base URL
https://{SERVER}/api/?apikey={yourAPIkey}&service=list_license_groups
Description
Lists all software license groups for account.
Parameters
Optional parameters
Add optional parameters after the required parameters in the base URL.
https://{SERVER}/api/?apikey={yourAPIkey}&service=list_license_groups&required_parameters={parameter-value}&optional_parameters={parameter-value}
| Parameter | Description | Type | Options | Default | 
|---|---|---|---|---|
| describe | Optional. Returns a description of the entered call, the available parameters, an example of its output, and returned fields with descriptions. | boolean | true | 0 | 
Examples
List license groups
https://{SERVER}/api/?apikey={yourAPIkey}&service=list_license_groups
Example response
<?xml version="1.0"?>
<result created="2024-10-01T14:42:22+01:00" host="SERVER" status="OK">
  <items>
    <license_group>
      <name>MS Office</name>
      <license_group_id>1</license_group_id>
    </license_group>
    <license_group>
      <name>Dell</name>
      <license_group_id>2</license_group_id>
    </license_group>
    <!-- more <license_group> nodes -->
  </items>
</result>Returned fields
| Field | Type | Can Be Empty | Description | 
|---|---|---|---|
| license_group_id | integer | no | The unique identifier of this software license group. | 
| name | string | yes | The name of the software license group. | 
Updated 3 months ago