Import data from Salesforce API.
type
:"Salesforce"
_auth_flow
: strauth_flow_id
: strinstance_url
: str
The _auth_flow
property marks this as being a connector that requires initiating the oauth dance and prevents it from being in the schema.
The auth_flow_id
property is like an identifier that is used to identify the secrets associated with the connector.
The instance_url
property is the url of your Salesforce instance
DATA_PROVIDERS: [
type: 'Salesforce'
auth_flow_id: '<auth_flow_id>'
instance_url: '<instance_url>'
,
...
]
domain
: str, requiredname
: str, requiredquery
: str (not empty), required
The query
must be a valid SOQL query. See documentation
DATA_SOURCES: [
domain: '<domain>'
name: '<name>'
query: '<query>'
,
...
]