Skip to content

Commit

Permalink
Pass member_cid when provided during environment authentication. Closes
Browse files Browse the repository at this point in the history
  • Loading branch information
jshcodes committed Jan 27, 2024
1 parent ddf5520 commit 2916b28
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/falconpy/_auth_object/_falcon_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,9 @@ def __init__(self,
"client_id": api_id,
"client_secret": api_sec
}
# Provide member_cid for MSSP environment authentication scenarios. Issue #1105.
if member_cid:
self._creds["member_cid"] = member_cid

# Log the creation of this object if debugging is enabled.
# Starting with v1.3.0 minimal Python native logging is available. In order to reduce
Expand Down

0 comments on commit 2916b28

Please sign in to comment.