Syntax
connectToSalesforce(connectionName)
...
Note |
---|
All fields that describe a SFDC connection configuration are required. |
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
connectionName | string | Yes | The name of the Salesforce connection as defined in the SFDC Configuration page. |
Return type
SFDCConnection - predefined structure type
Predefined structure fields and types
...
SFDCConnection
...
access_token
...
string
...
instance_url
...
Example
Code Block |
---|
SFDCConnection conn = connectToSalesforce("SFDC_test"); logPrint("WARN", "Connected to SF: " + conn.instance_url + " - " + conn.access_token); |
...