/
sfdcGetAccount
sfdcGetAccount
Syntax
sfdcGetAccount(sfdcConnection, sfdcAccountId, [sfdcAPIVersion])
Description
Retrieves data related to an account from the Salesforce environment.
Parameters
Parameter | Type | Required | Description |
---|---|---|---|
sfdcConnection | Yes | Salesforce Connection - it is the object resulted from the call to the connectToSalesforce function. | |
sfdcAccountId | string | Yes | ID of the Salesforce account to be retrieved. |
sfdcAPIVersion | string | No | Salesforce API version to be called when creating the account, it should have the following form: |
Return type
SFDCAccount (predefined type)
Example
The following example will get information about the account in Salesforce.
SFDCConnection conn = connectToSalesforce("SFDC_test");
logPrint("WARN", "Connected to SF: " + conn.instance_url + " - " + conn.access_token);
SFDCAccount acc;
acc = sfdcGetAccount(conn, "account ID", "v43.0");
logPrint("WARN", "Retrieved the account: " + acc);
See also
Related content
sfdcQuery
sfdcQuery
More like this
sfdcGetAccount
sfdcGetAccount
More like this
sfdcCreateAccount
sfdcCreateAccount
More like this
sfdcCreateAccount
sfdcCreateAccount
More like this
sfdcGetOpportunity
sfdcGetOpportunity
More like this
sfdcGetOpportunity
sfdcGetOpportunity
More like this