Skip to content

Commit 29783a2

Browse files
First commit
1 parent cb22999 commit 29783a2

File tree

3 files changed

+38
-2
lines changed

3 files changed

+38
-2
lines changed

docs-v2/pages/connect/_meta.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,9 @@
2626
"connect-link": {
2727
"title": "Connect Link"
2828
},
29+
"app-configuration": {
30+
"title": "App Configuration"
31+
},
2932
"migrating-from-project-keys-to-oauth": {
3033
"display": "hidden"
3134
}

docs-v2/pages/connect/api.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ const pd = createBackendClient({
140140

141141
await pd.invokeWorkflowForExternalUser(
142142
"enabc123", // pass the endpoint ID or full URL here
143-
"external_user_id" // The end user's ID in your system
143+
"external_user_id", // The end user's ID in your system
144144
{
145145
method: "POST",
146146
body: {
@@ -165,7 +165,7 @@ const pd = createBackendClient({
165165

166166
await pd.invokeWorkflowForExternalUser(
167167
"enabc123", // pass the endpoint ID or full URL here
168-
"external_user_id" // The end user's ID in your system
168+
"external_user_id", // The end user's ID in your system
169169
{
170170
method: "POST",
171171
body: {
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import Image from 'next/image'
2+
3+
# Configuring Your application
4+
5+
By default, your end users will see this screen when they connect their account (to Google Sheets in this example):
6+
7+
<Image src="https://res.cloudinary.com/pipedreamin/image/upload/v1731024264/connect-standard-gsheets_fonwrx.png" alt="Pipedream Connect" width={300} height={529} />
8+
9+
To customize this screen, you can configure your [application name](#application-name), [support email](#support-email), and [logo](#logo) in the Pipedream UI.
10+
11+
## Customizing your application details
12+
13+
Open your project in the Pipedream UI: [https://pipedream.com/projects](https://pipedream.com/projects)
14+
15+
1. Once you've opened your project, click the **Connect** tab in the left sidebar
16+
2. From there, select the **Configuration** tab
17+
18+
### Application name
19+
By default, your end users will see:
20+
>We use Pipedream to connect your account
21+
22+
Enter the name of your application that you'd like to show instead, so it'll read:
23+
>\{Application Name\} uses Pipedream to connect your account
24+
25+
### Support email
26+
In the case of any errors during the account connection flow, by default your users will see:
27+
>Connection failed. Please retry or contact support.
28+
29+
To give your end users an email address to seek support, enter your support email. We'll display it:
30+
>Connection failed. Please retry or contact support [[email protected]](mailto:[email protected]).
31+
32+
### Logo
33+
By default we'll show Pipedream's logo alongside the app your use is connecting to. If you'd like to show your own logo instead, you can upload it here.

0 commit comments

Comments
 (0)