Skip to main content
Omnitracs Knowledge Base

Global Group Member Object

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

 

Attribute

 

 

Description

 

id

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

type

A string of maximum length 1 which identifies the type of asset. Valid values are: '0' (vehicle), '2' (user), '3' (driver) '4' (global group).

WSDL Definition

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

<complexType name="GlobalGroupMember">

  <sequence>

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

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

  </sequence>

</complexType>

Sample XML

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

<GlobalGroupMember>

   <id>TRUCK1</id>

   <type>0</type>

</GlobalGroupMember>

  • Was this article helpful?