Skip to end of banner
Go to start of banner

sfdcCreateAccount

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 6 Next »

Syntax

sfdcCreateAccount(sfdcConnection, sfdcAccount, [sfdcAPIVersion])

Description

Creates an account in the Salesforce environment.


Parameters

Parameter

Type

Required

Description

sfdcConnection

SFDCConnection

Yes

Salesforce Connection - it is the object resulted from the call to the connectToSalesforce routine.

sfdcAccountSFDCAccountYesStructure containing the fields of the account that will be created. This is a predefined structure type described below. When creating an account, only the Name field is required.
sfdcAPIVersionstringNoThe Salesforce API version to be called when creating the account, it should have the following form: "vXX.X" - eg: "v43.0", "v42.0".
It is not required and if empty, the latest available version will be used.


SFDCAccount fields

Note that the Name field is required, the rest of the fields are optional.

FieldType

Name

string

AccountNumber

string
AnnualRevenuestring
BillingCitystring
BillingCountrystring
BillingPostalCodestring
BillingStatestring
BillingStreetstring
Descriptionstring
Faxstring
Industrystring
NumberOfEmployeesnumber
Ownershipstring
Phonestring
Ratingstring
ShippingCitystring
ShippingCountrystring
ShippingPostalCodestring
ShippingStatestring
ShippingStreetstring
Sicstring
Sitestring
TickerSymbolstring
Typestring
Websitestring

Return type

string - Salesforce Account ID

See also

  • No labels