Skip to main content
Omnitracs Knowledge Base

Global Group Object

Information about a global group is implemented in the Global Group object. The attributes of a Global Group object are:

 

Attribute

 

 

Description

 

id

A string of maximum length 25 containing the unique identifier of the global group. The list of valid characters are:
abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789<(+&!$*);-./,%>?:#@='

description

A string of maximum length 100 containing the description of the global group. This attribute is optional. The list of valid characters are the same as id (above).

limitHistory

A boolean value which indicates if the history of assets in the group should be limited by the date the asset joined the group. This applies to limited users only.

visibleToUnlimitedUsers

A boolean value which indicates if the group should be visible to unlimited users.

WSDL Definition

Here is how the Global Group object is defined within the WSDL

<complexType name="GlobalGroup">

  <sequence>

    <element name="id" type="xsd:string"/>

    <element name="description" nillable="true" type="xsd:string"/>

    <element name="limitHistory" type="xsd:boolean"/>

    <element name="visibleToUnlimitedUsers" type="xsd:boolean"/>

  </sequence>

</complexType>

Sample XML

Here is a sample showing what the Global Group object would look like in XML

<GlobalGroup>

   <id>Lower Mgmt</id>

   <description>This group contains only lower management people.</description>

   <limitHistory>true</limitHistory>

   <visibleToUnlimitedUsers>false</visibleToUnlimitedUsers>

</GlobalGroup>

  • Was this article helpful?