CreateAddressingInstanceKey

This service provides an InstanceKey that is used when a new session is started with the GlobalTypeAhead service.

Resource URL

https://OnDemandServer/soap/CreateAddressingInstanceKey

For a list of Spectrum OnDemand servers, see Connecting to Spectrum OnDemand Servers.

Example

The following shows a SOAP request:

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cre="http://www.pb.com/spectrum/services/CreateAddressingInstanceKey">
   <soapenv:Header/>
   <soapenv:Body>
      <cre:CreateAddressingInstanceKeyRequest>
         <!--Optional:-->
         <cre:options/>
         <!--Optional:-->
         <cre:Input>
            <!--Zero or more repetitions:-->
            <cre:Row>
               <!--Optional:-->
               <cre:user_fields>
                  <!--Zero or more repetitions:-->
                  <cre:user_field>
                     <cre:name>woodward</cre:name>
                     <cre:value>avenue</cre:value>
                  </cre:user_field>
               </cre:user_fields>
            </cre:Row>
         </cre:Input>
      </cre:CreateAddressingInstanceKeyRequest>
   </soapenv:Body>
</soapenv:Envelope>

This would be the response:

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
   <soap:Body>
      <ns3:CreateAddressingInstanceKeyResponse xmlns:ns2="http://spectrum.pb.com/" xmlns:ns3="http://www.pb.com/spectrum/services/CreateAddressingInstanceKey">
         <ns3:Output>
            <ns3:Row>
               <ns3:InstanceKey>ACUjMzMTU5NDc0OTI3MzQwMgMj01MT</ns3:InstanceKey>
               <ns3:user_fields>
                  <ns3:user_field>
                     <ns3:name>woodward</ns3:name>
                     <ns3:value>avenue</ns3:value>
                  </ns3:user_field>
               </ns3:user_fields>
            </ns3:Row>
         </ns3:Output>
      </ns3:CreateAddressingInstanceKeyResponse>
   </soap:Body>
</soap:Envelope>