8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
There seem to be a typo in Safe.get_safe_details() - there is no parameter called "extendedDetails" in the native CYA-Call.
Instead there is a parameter called "includeAccounts" and introducing this one would be a benefit.
For this the parameter name in the call in Safe.get_safe_details() should be change to "includeAccounts"
return await self.epv.handle_request("get", f"API/Safes/{safename}", params={"extendedDetails": "True"})
==> return await self.epv.handle_request("get", f"API/Safes/{safename}", params={"includeAccounts": "True"})
The text was updated successfully, but these errors were encountered:
safepost
No branches or pull requests
There seem to be a typo in Safe.get_safe_details() - there is no parameter called "extendedDetails" in the native CYA-Call.
Instead there is a parameter called "includeAccounts" and introducing this one would be a benefit.
For this the parameter name in the call in Safe.get_safe_details() should be change to "includeAccounts"
==>
return await self.epv.handle_request("get", f"API/Safes/{safename}", params={"includeAccounts": "True"})
The text was updated successfully, but these errors were encountered: