...
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 | Yes | The unique fields identifying the vendor(s) to be retrieved. |
Request Usage Example(s)
Code Block | ||||||
---|---|---|---|---|---|---|
| ||||||
<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> |
...