Problem
How to Add an EntityType filter to the SQS configuration in the tenant physical configuration.
Solution
1. Get the Physical configuration of the tenant, we need ROLE_TENANT_ADMIN to get the physical configuration of a tenant.
GET https://{env_url}/reltio/tenants/{{tenantID}}
2. Add the below filter condition in the SQS section
"objectFilter": "(equals(type,'configuration/entityTypes/Professional')"
For example:
"messaging": {
"destinations": [
{
"type": "queue",
"provider": "aws:sqs://{{AccessKey}}:{{SecretKey}}@us-east-1",
"name": "AWSName",
"dtssQueue": false,
"enabled": true,
"awsAccountId": "AWSAccountID",
"objectFilter": "(equals(type,'configuration/entityTypes/Professional')"
}
]
}
3. As these parameters are stored in the Physical Configuration of the tenant you need to raise a support ticket with the required details to change this parameter.
4. Also you can do the needed changes directly using the External Queues in Console
References
https://documentation.reltio.com/events/eventsapi.html?hl=objectfilter
https://docs.reltio.com/tenantmanagement/manageexternalqueue.html
Comments
Please sign in to leave a comment.