SalesforceDelete()

Deletes the object within SalesForce at the given Id

Usage

BOOLEAN = SalesforceDelete( email, passwordtoken, id, timeout )
Argument Summary
email SalesFoce Email address
passwordtoken SalesForce password and token concatenated together
id The Id for this object to update
timeout the time in milliseconds, that the connection will wait for a response [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

SalesforceDelete(
   email=?, 
   passwordtoken=?, 
   id=?, 
   timeout=?
);

Supports passing parameters as a structure using ArgumentCollection:

SalesforceDelete( ArgumentCollection={
   email : ?, 
   passwordtoken : ?, 
   id : ?, 
   timeout : ?
} );