Skip to main content
Omnitracs Knowledge Base

Role

Information about a user role is implemented in the Role object.  The attributes of the Role object are:

 

Attribute

 

 

Description

 

description

A string of maximum length 50 containing a description of the role.

name

A string of maximum length 25 containing the name of the role.

WSDL Definition

Here is how the Role Information object is defined within the WSDL

<complexType name="Role">

   <sequence>

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

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

   </sequence>

</complexType>

 

Sample XML

Here is some sample XML that shows what the Role Information object will look like in XML

<role>

  <description>Administrator</description>

  <name>Admin</name>

</role>

 

  • Was this article helpful?