Data Connectors List Resource
Resource URL
/wave/dataConnectors
Formats
JSON
Available Version
39.0
Available in Postman
To view and test a working example of this resource, see getDataConnectorCollection in Postman. For information about how to authenticate your org with Postman, see the CRM Analytics Rest API Quick Start.
Available Components
HTTP Methods
GET POST
Request parameters for GET
Parameter Name | Type | Description | Required or Optional | Available Version |
---|---|---|---|---|
category | ConnectWaveConnectorCategoryEnum | The categories that the data connector belongs to. Valid values are:
|
Optional | 49.0 |
connectorType | ConnectWaveDataConnectorTypeEnum | For a full list of the data connector types, see the enum description. | Optional | 39.0 |
folderId | Id | Filters the results to include on the contents of a specific folder. The id can be the requesting user's ID for items in the user's private folder. | Optional | 49.0 |
scope | ConnectWaveScopeTypeEnum | The type of scope to be applied to the returned collection. Valid values are:
|
Optional | 38.0 |
Response body for GET
Request body for POST
The following JSON shows how to create a new Analytics connector, of connectorType SalesforceExternal.
{
"label": "My SalesforceExternal Connector",
"name" : "mySFDCExt",
"description" : "Connection to another Salesforce org.",
"connectorType" : "SalesforceExternal",
"connectorHandler" : "Legacy",
"connectionProperties" : [ {
"name" : "Password",
"value" : "*******"
}, {
"name" : "Service_URL",
"value" : "https://MyDomainName.my.salesforce.com
/services/Soap/u/53.0"
}, {
"name" : "Username",
"value" : "user@yourSalesforceOrg.org"
}, {
"name" : "APIType",
"value" : "BULKV2"
}
]
}