SalesforceCreate()
Inserts a new Object into SalesForce, returning the new ID that was created
Usage
STRING = SalesforceCreate(
email,
passwordtoken,
type,
fields,
timeout
)
Argument | Summary |
---|---|
SalesFoce Email address | |
passwordtoken | SalesForce password and token concatenated together |
type | The name of the SalesForce object. Case matters. Custom objects should end with __c |
fields | Structure of all the fields that will be set in this object |
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:
SalesforceCreate( email=?, passwordtoken=?, type=?, fields=?, timeout=? );
Supports passing parameters as a structure using ArgumentCollection:
SalesforceCreate( ArgumentCollection={ email : ?, passwordtoken : ?, type : ?, fields : ?, timeout : ? } );