Salesforce

Connection Attributes

Parameter

Value

ApiVersion

APIVersion has to be an exact match of the Salesforce API version. E.g 47.0 = 47.0, 47 will not work.

GrantType

password

ClientId

Encrypted Salesforce Client ID

ClientSecret

Encrypted Salesforce Client Secret

Username

Encrypted Salesforce Username

Password

Encrypted Salesforce Password

InstanceAuthUrl

Authorization URL for Salesforce instance.

Ex. https://login.salesforce.com/services/oauth2/token

Sample JSON

{
 "ApiVersion": 47.0,
 "GrantType": "password",
 "ClientId": "Bn8UmtiLydmYQV6//qCL5dqfNUMhqchdk959hu0XXgauGMYAmYoyWN8FD+voGuMwGyJa7onrc60q1Hu6QFsQXHVA==",
 "ClientSecret": "DyU1hqde3cWwkPOwK97T6rzwqv6t3bgQeCGq/fUx+tKI=",
 "UserName": "dXNlcm5hbWVAZW1haWwuY29t",
 "Password": "cGFzc3dvcmRwYXNzd29yZA=="
}

Last updated