## Configure connection **post** `/v3/connections/{connectionId}/configure` Configure resources for a connection (supported providers: GitHub for now) ### Path Parameters - `connectionId: string` ### Body Parameters - `resources: array of map[unknown]` ### Returns - `message: string` - `success: boolean` - `webhooksRegistered: optional number` ### Example ```http curl https://api.supermemory.ai/v3/connections/$CONNECTION_ID/configure \ -H 'Content-Type: application/json' \ -H "Authorization: Bearer $SUPERMEMORY_API_KEY" \ -d '{ "resources": [ { "foo": "bar" } ] }' ``` #### Response ```json { "message": "message", "success": true, "webhooksRegistered": 0 } ```