Data Connectors List Resource

Returns a collection of Analytics connectors and creates an Analytics connector.

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.

HTTP Methods

GET POST

Request parameters for GET

Parameter Name Type Description Required or Optional Available Version
category Connect​Wave​Connector​Category​Enum The categories that the data connector belongs to. Valid values are:
  • Advanced​Properties​Support
  • Batch​Read
  • Direct
  • File​Based
  • Filter​Support
  • Output
  • Private
Optional 49.0
connector​Type Connect​Wave​Data​Connector​Type​Enum For a full list of the data connector types, see the enum description. Optional 39.0
folder​Id 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 Connect​Wave​Scope​Type​Enum The type of scope to be applied to the returned collection. Valid values are:
  • Browse
  • Created​By​Me
  • Insights​Applications​Is​Cans​Edit
  • Mru (Most Recently Used)
  • Shared​With​Me
Optional 38.0

Response body for GET

Data Connector Collection

Request body for POST

Data Connector Input

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"
    }
  ]
}

Response body for POST

Data Connector