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 GetItems call that did not send the proper ItemIdentifier content.

<ae:return>
   <ae:status>
      <ae:status>IS-ERROR</ae:status>
      <ae:message>Invalid item id 0 for table 1000.</ae:message>
   </ae:status>
</ae:return>