You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Add new left-nav link to the new docs
* Describe how to use the new API to configure and run a component
* Document the new API endpoints in the API/SDK reference section
* Add the exact `pnpm` entry to `.tool-versions` in the docs directory
external_user_id: externalUserId// The end user's ID in your system
82
82
});
@@ -134,7 +134,7 @@ curl -X POST https://api.pipedream.com/v1/connect/{project_id}/tokens \
134
134
135
135
## External users
136
136
137
-
When you use the Connect API, you'll pass an `external_user_id` parameter when initiating account connections and retrieving credentials. This is your user's ID, in your system — whatever you use to uniquely identify them.
137
+
When you use the Connect API, you'll pass an `external_user_id` parameter when initiating account connections and retrieving credentials. This is your user's ID, in your system — whatever you use to uniquely identify them.
138
138
139
139
Pipedream associates this ID with user accounts, so you can retrieve credentials for a specific user, and invoke workflows on their behalf.
140
140
@@ -165,7 +165,7 @@ See [the Connect tokens docs](/connect/tokens) for more information.
165
165
166
166
```
167
167
POST /{project_id}/tokens
168
-
```
168
+
```
169
169
170
170
##### Path parameters
171
171
@@ -199,7 +199,7 @@ Pipedream will send events on successful auth, or any errors, to this URL via we
199
199
200
200
##### Examples
201
201
202
-
To create a short-lived token via TypeScript / JavaScript SDK, you'll need to create a Pipedream API client and call the `createConnectToken` method. In our example app, this code is in `app/server.ts`.
202
+
To create a short-lived token via TypeScript / JavaScript SDK, you'll need to create a Pipedream API client and call the `createConnectToken` method. In our example app, this code is in `app/server.ts`.
203
203
204
204
In other languages, you'll need to make an HTTP POST request to the `/tokens` endpoint to create a token, then return the token to your frontend. Click into other tabs to see examples in additional languages.
205
205
@@ -208,8 +208,8 @@ In other languages, you'll need to make an HTTP POST request to the `/tokens` en
0 commit comments