SalesforceDescribe()

Retrieves the information about the object

Usage

STRUCTURE = SalesforceDescribe( email, passwordtoken, type, timeout )
Argument Summary
email SalesFoce Email address
passwordtoken SalesForce password and token concatenated together
type The Type of the object to get information on
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:

SalesforceDescribe(
   email=?, 
   passwordtoken=?, 
   type=?, 
   timeout=?
);

Supports passing parameters as a structure using ArgumentCollection:

SalesforceDescribe( ArgumentCollection={
   email : ?, 
   passwordtoken : ?, 
   type : ?, 
   timeout : ?
} );