Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion docs-v2/pages/connect/api.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2247,9 +2247,21 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/triggers/de
List all of the deployed triggers for a given user.

```text
GET /deployed-triggers/
GET /deployed-triggers/{emitter_type}
```

##### Path parameters

`emitter_type` **string** (optional)

Specify the type of emitter to retrieve deployed triggers from one of these options:
- `source`: default if no other `emitter_type` is specified, includes any app-based event source
- `http`: native HTTP webhook trigger
- `timer`: native schedule trigger
- `email`: native email trigger

[See here](/connect/components/#deploying-triggers) for more info on source types.

##### Query parameters

`external_user_id` **string**
Expand Down
3 changes: 1 addition & 2 deletions docs-v2/pages/connect/components.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -923,8 +923,7 @@ const { data: deployedTrigger } = await pd.deployTrigger({
});

const {
id: triggerId, // The unique ID of the deployed trigger
endpoint_url: endpointUrl, // The endpoint URL to return to the user
id: triggerId, // The unique ID of the deployed trigger
} = deployedTrigger;

// Parse and return the data you need
Expand Down
11 changes: 5 additions & 6 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading