You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Removed outdated warnings about POST requests not working
- Added comprehensive examples for POST request usage
- Updated error handling examples to reflect working POST functionality
- Documented Darktrace 6.1+ compatibility for POST requests
- Updated parameter documentation for post_request flag
Copy file name to clipboardExpand all lines: docs/modules/advanced_search.md
+50-29Lines changed: 50 additions & 29 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,13 @@
2
2
3
3
The Advanced Search module provides access to Darktrace's advanced search functionality for querying logs and events.
4
4
5
-
## ⚠️ Known Issues
5
+
## ✅ POST Request Support (v0.8.3+)
6
6
7
-
**POST Requests Not Supported**: POST requests to the Advanced Search API are currently not working due to unresolved authentication signature calculation issues. The Darktrace API documentation specifies that POST parameters should be included in the signature calculation, but multiple implementation attempts following the official documentation have resulted in "API SIGNATURE ERROR" responses.
7
+
**RESOLVED**: POST requests to the Advanced Search API now work correctly! This was resolved in v0.8.3 by fixing JSON formatting inconsistencies in the authentication system.
8
8
9
-
**Workaround**: Use GET requests for Advanced Search queries, which work correctly and support all the same functionality. The SDK automatically defaults to GET requests.
9
+
-**Darktrace 6.1+**: POST requests are recommended for advanced queries
10
+
-**Earlier versions**: GET requests continue to work as before
11
+
-**Both methods supported**: You can choose between GET and POST based on your needs
0 commit comments