ConsignorInfo


A service that returns a list of consignors.

WEBSERVICE : http://webservices.vortexauction.com/functions.cfc?wsdl METHOD : ConsignorInfo ARGUMENT : AUCTIONEER_ID [Numeric] Required | Your auctioneer ID ACCESS_KEY [String] Required | Your web service access key CONSIGNOR_ID [Numeric] Optional | A consignor ID EXTERNAL_CONSIGNOR_ID [String] Optional | An external consignor ID
NOTE : 1. You can specify an AUCTION_ID or EXTERNAL_AUCTION_ID, if both, then only AUCTION_ID will be used. 2. You can specify an CONSIGNOR_ID or EXTERNAL_CONSIGNOR_ID, if both, then only CONSIGNOR_ID will be used.
RETURNS : BidderInfoResponse ON FAILURE : <?xml version="1.0" encoding="utf-8"?> <ConsignorInfoResponse> <Error> <Code>[Error code]</Code> <Message>[Error message]</Message> </Error> </ConsignorInfoResponse> ON SUCCESS : <?xml version="1.0" encoding="utf-8"?> <ConsignorInfoResponse> <ConsignorList> <Consignor> <Consignor_ID>[Consignor ID]</Consignor_ID> <External_ID>[Consignor external ID]</External_ID> <ConsignorNumber>[Consignor's number]</ConsignorNumber> <Active>[Whether consignor can access the system]</Active> <CompanyName>[Consignor's company name]</CompanyName> <Email>[Consignor's e-mail address]</Email> <Contact>[Consignor's contact name]</Contact> <ContactEmail>[Consignor's contact e-mail address]</ContactEmail> <City>[Consignor's city]</City> <LoginUsername>[Consignor's username]</LoginUsername> <Telephone1>[Consignor's telephone 1]</Telephone1> <Telephone2>[Consignor's telephone 2]</Telephone2> </Consignor> ... </ConsignorList> </ConsignorInfoResponse>
ERROR CODES : 00 = An unexpected error occured. 01 = Missing or invalid arguments. 02 = Invalid auctioneer ID and/or access key.
EXAMPLES : COLDFUSION : <cfinvoke webservice="http://webservices.vortexauction.com/functions.cfc?wsdl" method="ConsignorInfo" returnvariable="result"> <cfinvokeargument name="Auctioneer_ID" value="0" /> <cfinvokeargument name="Access_Key" value="..." /> <cfinvokeargument name="Consignor_ID" value="0" /> <cfinvokeargument name="External_Consignor_ID" value="..." /> </cfinvoke> <cfdump var=#result# /> PHP : class ConsignorInfo { function ConsignorInfo($Auctioneer_ID, $Access_Key, $Consignor_ID, $External_Consignor_ID) { $this->Auctioneer_ID = $Auctioneer_ID; $this->Access_Key = $Access_Key; $this->Consignor_ID = $Consignor_ID; $this->External_Consignor_ID = $External_Consignor_ID; } } $soapClient = new SoapClient("http://webservices.vortexauction.com/functions.cfc?wsdl"); $params = new ConsignorInfo(0, "...", 0, "..."); $result = $soapClient->ConsignorInfo($params); var_dump($result);
TEST FORM: