We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Bug
This line breaks the get_case_template method when targeting TheHive4
get_case_template
TheHive4py/thehive4py/api.py
Line 604 in a92acb6
{ "type": "BadRequest", "message": "Property status for type org.thp.thehive.services.CaseTemplateSteps not found" }
print(response.json())
api.get_case_template("name")
CaseTemplateException
Remove the status operator on line 581, resulting in:
status
req = self.url + "/api/case/template/_search" data = { "query": Eq("name", name) }
The text was updated successfully, but these errors were encountered:
#183 Fix the get_case_template method for TheHive 4
6b1ddff
Successfully merging a pull request may close this issue.
Get_Case_Template broken in TheHive 4
Request Type
Bug
Problem Description
This line breaks the
get_case_template
method when targeting TheHive4TheHive4py/thehive4py/api.py
Line 604 in a92acb6
Error:
Steps to Reproduce
print(response.json())
to line 591 of api.pyapi.get_case_template("name")
CaseTemplateException
wrapperPossible Solutions
Remove the
status
operator on line 581, resulting in:The text was updated successfully, but these errors were encountered: