Skip to main content
Omnitracs Knowledge Base

Capability Object

The attributes of the Capability object are:

 

Attribute

 

 

Description

 

applicationId

A string of maximum length 10 containing the application identifier of the application to which this capability belongs. A list of application IDs can be found on the Application Information page.

description

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

group

A string of maximum length 20 containing the group to which the capability belongs.

id

A string of maximum length 20 containing the unique identifier of the capability. A list of capabilities and their identifiers can be found on the Capability Information page.

position

A string of maximum length 3 containing the position of the capability within its application in return strings. Zero means the capability is not included in return strings.

WSDL Definition

Here is how the Capability object is defined within the WSDL.

<complexType name="Capability">

   <sequence>

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

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

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

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

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

   </sequence>

</complexType>

 

Sample XML

Here is some sample XML that shows what the Capability object will look like in XML.

<capability>

   <applicationId>QTRACS</applicationId>

   <description>Can use QTRACS</description>

   <group>QTGENERAL</group>

   <id>C.QT.0000</id>

   <position>1</position>

</capability>

 

  • Was this article helpful?