FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getUsersForProductCategoryResponse

Description

A getUsersForProductCategoryResponse message contains an element of getUsersForProductCategoryResponseType.

Derived By

Type getUsersForProductCategoryResponseType

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.
 
userData  getUsersForProductCategoryResponseDataType  0..1  A geUsersForProductCategoryResponseDataType contains an array of userData elements. See geUsersForProductCategoryResponseDataType.
Referenced By
Name  Type 
getUsersForProductCategory  Method 
XML Example

The following XML fragment illustrates a successful getUsersForProductCategoryResponse message:

<getUsersForProductCategoryResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <userData>
      <user>
         <userName>admin</userName>
      </user>
      <user>
         <userName>p1admin</userName>
      </user>
      <user>
         <userName>pcuser</userName>
      </user>
   </userData>
</getUsersForProductCategoryResponse>

The following XML fragment illustrates a failed getUsersForProductCategoryResponse message:

<getUsersForProductCategoryResponse>
   <statusInfo>
      <status>FAILURE</status>
      <reason>There is no such Product Category with provided ID/Name!</reason>
   </statusInfo>
</getUsersForProductCategoryResponse>