Status

Description

The Status type holds status information for a Web service operation. The Status type parameters are listed below.

Parameters

Name Type Description
status StatusEnum. Status enumeration that indicates whether the message is a warning message, informational message, or error message.
code string The message code that is returned.
message string The message string that is returned.

Usage

The Status type is used to return status messages from service operations.

XML

The following XML shows Status as seen in the return element of a GetGroups call that did not include the group name.

<ae:return>
   <ae:status>
      <ae:status>IS-ERROR</ae:status>
      <ae:message>A group name must be specified to create a new group.</ae:message>
   </ae:status>
</ae:return>