Retrieves the licence group with the specified key.

Request Information

URI Parameters :

NameDescriptionTypeAdditional information
id

The licence group id.

globally unique identifier

Required

Body Parameters :

None.

Response Information

Resource Description :

IHttpActionResult containing the licence group, or 404 Not Found if it doesn't exist.

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": "e1718fa7-2b5f-43df-a8d5-4352494e5e08",
  "name": "sample string 2",
  "date_valid_until": "2026-09-16T09:24:57.5349501+00:00",
  "modified_dateutc": "2026-09-16T09:24:57.5349501+00:00"
}

application/xml, text/xml

Sample:
<licence_group xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <date_valid_until>2026-09-16T09:24:57.534Z</date_valid_until>
  <id>e1718fa7-2b5f-43df-a8d5-4352494e5e08</id>
  <modified_dateutc>2026-09-16T09:24:57.534Z</modified_dateutc>
  <name>sample string 2</name>
</licence_group>