Skip to content
This repository was archived by the owner on Dec 5, 2025. It is now read-only.

Commit a810e49

Browse files
[client] Add documentation
1 parent 7e3bc65 commit a810e49

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pycti/api/opencti_api_client.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,10 +118,14 @@ class OpenCTIApiClient:
118118
```
119119
:param json_logging: format the logs as json if set to True
120120
:type json_logging: bool, optional
121+
:param bundle_send_to_queue: if bundle will be sent to queue
122+
:type bundle_send_to_queue: bool, optional
121123
:param cert: If String, file path to pem file. If Tuple, a ('path_to_cert.crt', 'path_to_key.key') pair representing the certificate and the key.
122124
:type cert: str, tuple, optional
123-
:param auth: Add a AuthBase class with custom authentication for you OpenCTI infrastructure.
124-
:type auth: requests.auth.AuthBase, optional
125+
:param custom_headers: Add custom headers to use with the graphql queries
126+
:type custom_headers: str, optional must in the format header01:value;header02:value
127+
:param perform_health_check: if client init must check the api access
128+
:type perform_health_check: bool, optional
125129
"""
126130

127131
def __init__(

0 commit comments

Comments
 (0)