FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: activateShortCodeResponse

Description

An activateShortCodeResponse message contains an element of activateShortCodeResponseType.

Derived By

Type activateShortCodeResponseType

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—The request was processed.

  • FAILURE—The request was not processed.

reason
string
Gives reason if failure.
 
failedData  failedShortCodeDataType  0..1  Information about a short code response that was not generated is listed in the failedData element. See failedShortCodeDataType.
responseData  createdShortCodeDataType  0..1  Information about an short code response that was generated is listed in the responseData element. responseData contains a shortCode short code response string. This response is delivered back to the customer to enter into an activation utility.
Referenced By
Name  Type 
activateShortCode  Method 
XML Example

The following XML fragment illustrates a successful activateShortCodeResponse message:

<activateShortCodeResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <shortCode>...</shortCode>
   </responseData>
<activateShortCodeResponse>

The following XML fragment illustrates a failed activateShortCodeResponse message:

<activateShortCodeResponse>
   <statusInfo>
      <status>FAILURE</status>
   </statusInfo>
   <failedData>
      <shortCodeData>
         <webRegkey>be-sc-1</webRegkey>
         <shortCode>189603928568052437252111063433875295</shortCode>
      </shortCodeData>
      <reason>Short Code Activation failed : One or more fulfillment records found for the given Short Code and activationID.</reason>
      <duplicateFulfillmentRecords>
         <fulfillment>
            <uniqueId>HID-100333</uniqueId>
            <primaryKeys>
               <fulfillmentId>FID__52cc8d30_1320356c5cd__7ff8</fulfillmentId>
            </primaryKeys>
         </fulfillment>
      </duplicateFulfillmentRecords>
   </failedData>
</activateShortCodeResponse>