FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getProductCategoriesResponse

Description

A getProductCategoriesResponse message contains an element of getProductCategoriesResponseType.

Derived By

Type getProductCategoriesResponseType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
statusInfo  StatusInfoType  1..1 
Element  Data Type  Description 
status
StatusType

Returns one of the following:

  • SUCCESS—All categories in the request were processed.

  • PARTIAL_FAILURE—Some, but not all categories in the request were processed. The get operation never returns PARTIAL_FAILURE.

  • FAILURE—None of the categories in the request were processed.

reason
string
Gives a reason for partial failure or failure.
 
responseData  getProductCategoriesResponseDataType  0..1  A getProductCategoriesResponse contains an array of responseData elements. See getProductCategoriesResponseDataType.
Referenced By
Name  Type 
getProductCategories  Method 
XML Example

The following XML fragment illustrates a successful getProductCategoriesResponse message:

<getProductCategoriesResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <productCategory>
         <name>ALL</name>
         <description>ALL.</description>
      </productCategory>
      <productCategory>
         <name>Uncategorized Products</name>
         <description>Uncategorized Products.</description>
      </productCategory>
      <productCategory>
         <name>CRM</name>
         <description>Customer Relationship Management Products</description>
      </productCategory>
   </responseData>
</getProductCategoriesResponse>