FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: tns:transferEntitlementsResponse

Description

A transferEntitlementsResponse message contains an element of transferEntitlementsResponseType.

Each entitlement in the transferEntitlementsRequest is transferred as an atomic unit; transferring each either succeeds or fails.

Derived By

Type transferEntitlementsResponseType

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 items in the request were processed.

  • PARTIAL_FAILURE—Some, but not all items in the request were processed. The getCount and getQuery operations never return PARTIAL_FAILURE.

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

reason
string
Gives reason for partial failure or failure.
 
responseData  transferredEntitlementsListType  0..1  Information about the entitlements that were transferred is listed in the responseData element. See transferredEntitlementsListType.
failedData  failedTransferEntitlementListType  0..1  Information about the entitlements that were not added is listed in the failedData element. See failedTransferEntitlementListType.
Referenced By
Name  Type 
transferEntitlement  Method 
XML Example

The following XML fragment illustrates a successful transferEntitlementsResponse message:

<transferEntitlementsResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <transferredEntitlement>
         <entitlementIdentifier>
            <uniqueId>HID-220046</uniqueId>
            <primaryKeys>
               <entitlementId>18ee-9d61-9994-1748-747f-f8</entitlementId>
            </primaryKeys>
         </entitlementIdentifier>
         <lineItemIdentifierMap>
            <activationId>18ee-9d61-1094-1799-747f-f7</activationId>
            <transferredFromId>Ent-basic-2</transferredFromId>
         </lineItemIdentifierMap>
         <lineItemIdentifierMap>
            <activationId>18ee-9d61-1094-1748-747f-f6</activationId>
            <transferredFromId>Ent-basic-1</transferredFromId>
         </lineItemIdentifierMap>
      </transferredEntitlement>
   </responseData>
</transferEntitlementsResponse>