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}
Parameter | Required | Description | |
---|---|---|---|
Headers | Authorization |
Yes | Access Token in the format "Bearer
.For more information, see topic Authentication API. |
Content-Type |
Yes | Must be Content-Type: application/json . |
|
Path | tenantId |
Yes | Id of the tenant |
Path | profileName |
Yes | Name of the Profile |
Query | showEncryptedSecrets |
No |
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. |
Query | fromCache |
No | The 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": "<cmVsdGlvX3VpOm1ha2l0YQ== 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": "cmVsdGlvX3VpOm1ha2l0YQ=="
},
"salesforce": {
"password": "********"
"user": "sfdcServiceUser",
"loginUrl": "https://login.salesforce.com"
}
}