
DekelIsraeli88107 (Customer) asked a question.
Can I set review "Reviewer Coverage" by API?
Periodically I update the values for Reviewer coverage file
once created - How can I update it using API?
Salesforce now requires MFA validation for all SSO users. Please read the advisory below for further information on required actions to avoid login failures.
Read the Advisory
DekelIsraeli88107 (Customer) asked a question.
Periodically I update the values for Reviewer coverage file
once created - How can I update it using API?
Check uploadCoverage API (under Admin-> Web Services -> Review)
Can you send me example of such request?
Assuming I already have the authentication token
where can I find documentation about the file content
(I have example - but with no explanation)
Managed to run the API successfully using the following python code
def updateReviewCoverage( self, reviewName, fileContent, reviewCoverageType = ReviewCoverageType.reviewer):
url = f'{self.baseUrl}?cmd=uploadCoverage&type={reviewCoverageType.name}&name={reviewName}'
req = HttpRequest('POST', url)
req.addHeader('Authorization', f"Bearer {self.__GetAveksaToken()}")
req.setBody(fileContent)
req.setShouldVerify(False)
req.makeRequest()
responseBody = req.responseBody
if("status=failure" in responseBody): # expecting "status=success\n"
raise ValueError(responseBody)
Check this help section
Where do I find this help?
Should it be linked from my server UI?
Is it RSA public page?
What is the URL?
This is from the help section of the product.
Search for 'Structure of Reviewer and Monitor Coverage Files'
Found it for download at:
RSA Governance & Lifecycle 8.0.0 Online Help | RSA Community
https://community.rsa.com/s/article/RSA-Governance-Lifecycle-8-0-0-Online-Help
But
Is it available online?
on RSA site?
what is the URL?
anywhere in the product's UI if you click on help it will open the help section
Thanks
Got the code working