BidderDelete


A service that deletes a bidder.

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