SalesforceUpdate()
Updates the Object type with the given Id to the values in the fields. If the fields already exist they are overwritten
Usage
STRING = SalesforceUpdate(
email,
passwordtoken,
type,
id,
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 |
| id | The Id for this object to update |
| 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:
SalesforceUpdate( email=?, passwordtoken=?, type=?, id=?, fields=?, timeout=? );
Supports passing parameters as a structure using ArgumentCollection:
SalesforceUpdate( ArgumentCollection={
email : ?,
passwordtoken : ?,
type : ?,
id : ?,
fields : ?,
timeout : ?
} );
