Question
What user privileges do you need to check the status of the tenant in the Reltio IQ (RIQ) environment, and how do you do that?
Note: User must have the ROLE_ADMIN
or ROLE_ADMIN_TENANT
role
Answer
Request:
GET {{riUrl}}/api/v1.0/configuration/{{yourtenantname}}
Response :
{
"status": "success",
"configuration": {
"authData": {
"s3": {
"key": "someS3keyinfo,
"secret": "someS3secretkeyinfo",
"url": "s3n://reltio.tenant.tst-01.yourtenantname/"
}
},
"updatesConfig": {
"url": "s3n://reltio.tenant.tst-01.yourtenantname /updates.queue",
"stagingDir": "staging",
"stagingUrl": "s3n://reltio.tenant.tst-01.yourtenantname
/updates.queue/staging",
"flushTries": 10
"maxBlockSize": 40000000,
"maxQueueBlocksSize": 2000000000,
"maxFileSize": 128000000,
"secondsToFlush": 600,
"systemBucket": "reltio.tenant.tst-01.yourtenantname ",
"updatesDirectory": "updates.queue",
"consumeEvents": true,
"readStaging": true
},
"analyticsEnabled": true,
"maxIncrementalWindow": 120,
"maxIncrementalWindowOverlap": 48,
"inactive": false
}
};
From the above response if "analyticsEnabled": true" confirms the tenant registration in RIQ.
Comments
Please sign in to leave a comment.