Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Element

Data Type

Required

Description

Sample Data

RequestId

Int32

No

Click here for more information.

1

SessionTicket

String

Yes 

Click here for more information.

AV795EkfoxzwEpVD7pZJJA== 

VendorIdentities

PwsVendorRef[]

Yes 

The unique fields identifying the vendor(s) to be retrieved.


Request Usage Example(s)


Code Block
languagejava
titleExample 01
collapsetrue
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:pws="http://projectorpsa.com/PwsProjectorServices/" xmlns:req="http://projectorpsa.com/DataContracts/Requests/" xmlns:com="http://projectorpsa.com/DataContracts/Shared/Common/">
   <soapenv:Header/>
   <soapenv:Body>
      <pws:PwsGetVendor>
         <pws:serviceRequest>
            <req:RequestId>1</req:RequestId>
            <req:SessionTicket>AV795EkfoxzwEpVD7pZJJA==</req:SessionTicket>
            <req:VendorIdentities>
               <com:PwsVendorRef>
                  <com:VendorName>American Express</com:VendorName>
                  <com:VendorUid>1152921504606937722</com:VendorUid>
                  <com:VendorNumber>AMEX001</com:VendorNumber>
               </com:PwsVendorRef>
               <com:PwsVendorRef>
                  <com:VendorName>Visa USA</com:VendorName>
                  <com:VendorUid>1152921504606942269</com:VendorUid>
                  <com:VendorNumber>Visa USA</com:VendorNumber>
               </com:PwsVendorRef>
            </req:VendorIdentities>
         </pws:serviceRequest>
      </pws:PwsGetVendor>
   </soapenv:Body>
</soapenv:Envelope>

...