Question
When Running a GET MATCH in production, I am receiving an error. The error message is REL0001: Reltio API error: 403,Access is denied. How can I fix this problem?
Answer
Check the user permission using the following API.
GET https://auth.reltio.com/oauth/users/<user id>
You must make sure that you have both the data tenant id and customer tenant id defined with the following permission
"ROLE_DNB_CONNECTOR": [
<dataTenant>,
<customer Tenant>
],
"ROLE_DNB_CONNECTOR_SERVICE": [
<dataTenant>,
<customer Tenant>
],
"ROLE_DNB_CONNECTOR_CONFIG": [
<dataTenant>,
<customer Tenant>
],
"ROLE_API": [
<dataTenant>,
<customer Tenant>
],
"ROLE_USER": [
<dataTenant>,
<customer Tenant>
],
Comments
Please sign in to leave a comment.