## Configure connection `connections.configure(strconnection_id, ConnectionConfigureParams**kwargs) -> ConnectionConfigureResponse` **post** `/v3/connections/{connectionId}/configure` Configure resources for a connection (supported providers: GitHub for now) ### Parameters - `connection_id: str` - `resources: Iterable[Dict[str, object]]` ### Returns - `class ConnectionConfigureResponse: …` - `message: str` - `success: bool` - `webhooks_registered: Optional[float]` ### Example ```python import os from supermemory import Supermemory client = Supermemory( api_key=os.environ.get("SUPERMEMORY_API_KEY"), # This is the default and can be omitted ) response = client.connections.configure( connection_id="connectionId", resources=[{ "foo": "bar" }], ) print(response.message) ``` #### Response ```json { "message": "message", "success": true, "webhooksRegistered": 0 } ```