Unify and manage your data

Get Salesforce connector profile configurations

Learn how this API returns the profile configuration of the tenant with a given name.

Request

Operation Endpoint:

GET {Salesforce connector URL}\configuration\{tenantId}\{profileName}
Table 1. Parameters
Parameter Required Description
HeadersAuthorizationYesAccess Token in the format "Bearer <accessToken>".

For more information, see topic Authentication API.

Content-TypeYesMust be Content-Type: application/json.
PathtenantIdYesId of the tenant
PathprofileNameYesName of the Profile
QueryshowEncryptedSecretsNo

The possible values are true or false.

The default value will be false, if the parameter is missing.

If the parameter is set to false, then all the passwords are hidden with ******** values.

If the parameter is set to true then the passwords aren't hidden.

QueryfromCacheNoThe possible values are true or false.

If the parameter is missing, its default value is false. If the parameter is set to true, then it returns data from the cache.

Response

Success: 200
{
    "salesforce": {
        "loginUrl": "<sfdcLoginUrl>",
        "user": "<sfdcServiceUser>",
        "password": "<sfdcServicePassword>"
        "pollTime": <300 by default, not required>,
        "useBulkFrom": <Number of objects to post to Salesforce in a single request needed to use Bulk API. 0 means always use Bulk API>
    },
    "reltio": {
        "tenantUrl": "<tenanApiUrl | https://env.reltio.com/reltio/api/tenantId/",
        "authUrl": "<authUrl | https://auth-stg.reltio.com/oauth/token>",
        "workflowUrl": "<workflowUrl | https://tst-01-workflow.reltio.com/workflow-adapter/workflow/tenantId, not reqired>",
        "username": "<reltiServiceUser - not reqired>", //
        "password": "<reltiService - not reqired>",
        "maxObjectsToUpdateZero":<true|false - true is default, not reqired>,
        "mergeCheck": <true|false - false is default, not reqired>,
        "authToken": "<BASE64_CREDENTIALS_PLACEHOLDER not reqired>",
        "batchSize": <50 by default, not reqired>,
        "maxapicall": <300 by default, not reqired>,
    }
}
 
Error:   400 Bad Request, { error: {reason}}

Example

Sample Response JSON:

{
"reltio": {
"authUrl": "https://auth.reltio.com/oauth/token",
"tenantUrl": "https://test.reltio.com/reltio/api/myTenantId/",
"authToken": "<BASE64_CREDENTIALS_PLACEHOLDER>"
},
"salesforce": {
"password": "********"
"user": "sfdcServiceUser",
"loginUrl": "https://login.salesforce.com"
}
}