AuctionRemoveBidder


A service that removes a registered bidder from an auction.

WEBSERVICE : http://webservices.vortexauction.com/functions.cfc?wsdl METHOD : AuctionRemoveBidder ARGUMENT : AUCTIONEER_ID [Numeric] Required | Your auctioneer ID ACCESS_KEY [String] Required | Your web service access key AUCTION_ID [Numeric] Optional | The auction ID into which to add the bidder EXTERNAL_AUCTION_ID [String] Optional | An external auction ID into which to add the bidder BIDDER_ID [Numeric] Optional | The bidder ID to be added EXTERNAL_BIDDER_ID [String] Optional | The external bidder ID to be added
NOTE : 1. You must specify an AUCTION_ID or EXTERNAL_AUCTION_ID, if both, then only AUCTION_ID will be used. 2. You must specify an BIDDER_ID or EXTERNAL_BIDDER_ID, if both, then only BIDDER_ID will be used.
RETURNS : AuctionRemoveBidderResponse ON FAILURE : <?xml version="1.0" encoding="utf-8"?> <AuctionRemoveBidderResponse> <Error> <Code>[Error code]</Code> <Message>[Error message]</Message> </Error> </AuctionRemoveBidderResponse> ON SUCCESS : <?xml version="1.0" encoding="utf-8"?> <AuctionRemoveBidderResponse> <Auction> <Auction_ID>[ID of the target auction]</Auction_ID> </Auction> <Bidder> <Bidder_ID>[ID of the removed bidder]</Bidder_ID> </Bidder> </AuctionRemoveBidderResponse>
ERROR CODES : 00 = An unexpected error occured. 01 = Missing or invalid arguments. 02 = Invalid auctioneer ID and/or access key. 03 = Could not find specified auction. 05 = Could not find specified bidder.
EXAMPLES : COLDFUSION : <cfinvoke webservice="http://webservices.vortexauction.com/functions.cfc?wsdl" method="AuctionRemoveBidder" returnvariable="result"> <cfinvokeargument name="Auctioneer_ID" value="0" /> <cfinvokeargument name="Access_Key" value="..." /> <cfinvokeargument name="Auction_ID" value="0" /> <cfinvokeargument name="External_Auction_ID" value="..." /> <cfinvokeargument name="Bidder_ID" value="0" /> <cfinvokeargument name="External_Bidder_ID" value="..." /> </cfinvoke> <cfdump var=#result# /> PHP : class AuctionRemoveBidder { function AuctionRemoveBidder($Auctioneer_ID, $Access_Key, $Auction_ID, $External_Auction_ID, $Bidder_ID, $External_Bidder_ID) { $this->Auctioneer_ID = $Auctioneer_ID; $this->Access_Key = $Access_Key; $this->Auction_ID = $Auction_ID; $this->External_Auction_ID = $External_Auction_ID; $this->Bidder_ID = $Bidder_ID; $this->External_Bidder_ID = $External_Bidder_ID; } } $soapClient = new SoapClient("http://webservices.vortexauction.com/functions.cfc?wsdl"); $params = new AuctionRemoveBidder(0, "...", 0, "...", 0, "..."); $result = $soapClient->AuctionRemoveBidder($params); var_dump($result);
TEST FORM: