```diff
--- test_files/526-original.txt	2025-03-07 19:07:06
+++ test_files/526-modified.txt	2025-03-07 19:07:06
@@ -1,10 +1,14 @@
 ---
 title: "Connecting your User's Gmail Account"
 sidebarTitle: "Example Flow - Gmail"
-icon: "mailbox"
 description: "Here's how to connect your user to Gmail"
 ---
 
+1. **Fetching authentication parameters** - Gmail uses OAuth 2.0 for authentication and so no parameters are required upfront.
+2. **Collecting those parameters from the user** - No collection is required as no parameters are required upfront.
+3. **Initiating a connection** - Initiate a connection with the redirect URL. (No parameters are required to be sent in the body)
+4. **Handling the OAuth flow** - Redirect the user to the URL received in step 3.
+5. **Verifying the connection status** - Check that the connection was successful
 
 <Steps>
 <Step title="Fetching Authentication Parameters">
@@ -33,6 +37,14 @@
 ```
 </CodeGroup>
 
+<Warning>
+Gmail uses OAuth 2.0 for authentication, which requires a redirect URL to handle the OAuth callback.
+</Warning>
+
+<Tip>
+While Gmail doesn't require any upfront parameters from the user, we'll demonstrate the parameter fetching step to show the complete flow.
+</Tip>
+
 ### Parameters to fetch from the user
 <CodeGroup>
 ```shell Output of Python Code
@@ -51,7 +63,7 @@
 <CodeGroup>
 ```python Python Initiate connection 
 # This is the URL that the user will be redirected to after completing the authentication process
-redirect_url = "https://yourwebsite.com/connection/callback"
+redirect_url = "https://yourwebsite.com/connection/success"
 # this is only useful for oauth based flows involving redirect based authentication. 
 
 entity_id = "Jessica"  # This is the unique identifier for the user
@@ -79,17 +91,16 @@
 
 ```javascript Javascript Initiate connection 
 
-const redirectUrl = "https://yourwebsite.com/connection/callback"
+const redirectUrl = "https://yourwebsite.com/connection/success"
 
 const entityId = "Jessica" // This is the unique identifier for the user
 
 const connectionRequest = await toolset.client.connectedAccounts.initiate({
-    data: {
-        ...collectedParams // send collected params
-    },
     entityId: entityId,
     integrationId: expectedInputFields.integrationId, 
-    redirectUri: redirectUrl
+    redirectUri: redirectUrl,
+    authMode: "OAUTH2",
+    authConfig: {},
 });
 
 if (connectionRequest.connectionStatus === "INITIATED") {
@@ -134,8 +145,14 @@
 </Step>
 </Steps>
 
-You have successfully **Connected Your User's Gmail Account**.
+<Tip>
+You can also see the [dashboard](https://app.composio.dev/connections?page=1&status=ALL) for the connection status. 
+</Tip>
 
+<Info>
+You have successfully **Connected Your User's Gmail Account**!! 🎉
+</Info>
+
 <br/>
 
 <Card
```
