Retrieves all licence groups, optionally filtered via OData query options.

Request Information

URI Parameters :

None.

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the list of licence groups.

licence_group
NameDescriptionTypeAdditional information
id

Primary Key

globally unique identifier
name

Name of this licence group.

string
date_valid_until

Date and time until which this licence group grants access.

date
modified_dateutc

Readonly system field managed by database, filled with GetUtcDate when adding,updating

date

Response Formats

application/json, text/json

Sample:
{
  "id": "e4bf7aef-c469-4098-a47a-c2ab218037db",
  "name": "sample string 2",
  "date_valid_until": "2026-09-16T10:15:17.1206644+00:00",
  "modified_dateutc": "2026-09-16T10:15:17.1206644+00:00"
}

application/xml, text/xml

Sample:
<licence_group xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <date_valid_until>2026-09-16T10:15:17.120Z</date_valid_until>
  <id>e4bf7aef-c469-4098-a47a-c2ab218037db</id>
  <modified_dateutc>2026-09-16T10:15:17.120Z</modified_dateutc>
  <name>sample string 2</name>
</licence_group>