-
When calling 'falcon.indicator_create_v1' there seems to only be a position for body: Are there any way to pass params such as: P.S. - Obviously I tried this and it didn't work. ;-) |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
Hi @Qbert777 - This is a bug! 🐛 (The query string payload isn't addressed in the service class method.) I'm converting this into an issue now, we will submit a PR to resolve this asap. In the interim, you should still be able to do this via the Uber class, something along the lines of: from falconpy.api_complete import APIHarness as Uber
falcon = Uber(creds=creds)
result = falcon.command("indicator_create_v1", body=BODY, parameters={"ignore_warnings": True})
print(result) |
Beta Was this translation helpful? Give feedback.
-
Hi @Qbert777 - After upgrading to version 0.5.1, you should be able to use the Service Class to perform this action properly. Let us know if you have any problems. 😃 |
Beta Was this translation helpful? Give feedback.
Hi @Qbert777 -
This is a bug! 🐛 (The query string payload isn't addressed in the service class method.)
I'm converting this into an issue now, we will submit a PR to resolve this asap.
In the interim, you should still be able to do this via the Uber class, something along the lines of: