```diff
--- test_files/527-original.txt	2025-03-07 19:07:06
+++ test_files/527-modified.txt	2025-03-07 19:07:06
@@ -1,10 +1,13 @@
 ---
 title: "Connecting a Shopify Account using API Key"
 sidebarTitle: "Example Flow - Shopify"
-icon: "bars"
 description: "Guide to getting your user's Shopify account connected using API Key"
 ---
 
+1. **Fetching authentication parameters** - Shopify requires an admin API access token and store subdomain for authentication.
+2. **Collecting those parameters from the user** - Collect the admin API access token and store subdomain from your user.
+3. **Initiating a connection** - Create a connection with the collected parameters.
+4. **Verifying the connection status** - Check that the connection was successful by verifying the status.
 
 <Steps>
 <Step title="Fetching Authentication Parameters">
@@ -118,7 +121,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
@@ -146,7 +149,7 @@
 
 ```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
 
@@ -156,7 +159,9 @@
     },
     entityId: entityId,
     integrationId: expectedInputFields.integrationId, 
-    redirectUri: redirectUrl
+    redirectUri: redirectUrl,
+    authMode: "OAUTH2",
+    authConfig: {},
 });
 
 if (connectionRequest.connectionStatus === "INITIATED") {
@@ -202,8 +207,14 @@
 
 You have successfully **Connected Your User's Shopify Account**.
 
-<br/>
+<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 Shopify Account**!! 🎉
+</Info>
+
 <Card
   title="Next: Guide to Connecting Gmail Account (OAUTH)"
   color="#7bee0c"
```
