Salesforce Status API
This API returns the status of the tenants based on your permission.
For the ADMIN
user, this returns the status of all tenants. For
other users, the status of tenants is displayed based on the user's permission.
Request
GET {SFDCConnectorURL}/status
Authorization: Bearer {{token}}
Sample Response
Returns the tenant status, version, and configuration information.
{
"version": {
"hash": "6edcd4febea48304214dec76ad3e1355d1dcb915",
"branch": "2018.3.0",
"commit": "2018-09-20 16:35:52 +0500"
},
"remoteConfig": {
"s3": {
"reltio.connector.develop/config.json": "f144915a29324d0529635a193c5587e3-1"
},
"repositories": {
"reltio-ondemand/sfdc-connector-config-tst01": "1ea0d1881058c1ccbd9143d1822c72f2db3266db"
}
},
"lastStatusUpdate": "Thu, 27 Sep 2018 05:59:55 GMT",
"tenants": {
"{tenant}+{configName}": [
{
"module": "Reltio",
"status": "success",
"connectivity": {
"status": "success"
}
},
{
"module": "SalesForce",
"status": "success",
"connectivity": {
"status": "success"
},
"state": {
"FailedRecords": 0,
"NewRecords": 4,
"UpdateRecords": 0,
"OtherRecords": 0
}
},
{
"module": "SQS",
"status": "success",
"connectivity": {
"status": "success"
},
"state": {
"EventCount": 10
}
},
{
"module": "EventStore",
"status": "success",
"connectivity": {
"status": "success"
},
"state": {
"WaitingEvents": 7,
"InProcessEvents": 1
}
}
]
}
}