@@ -2011,6 +2011,10 @@ curl -X POST "https://api.pipedream.com/v1/connect/{your_project_id}/actions/run
20112011
20122012#### Deploy a trigger
20132013
2014+ <Callout type = " info" >
2015+ See [ here] ( /connect/components/#deploying-triggers ) for more info on supported trigger types with example payloads
2016+ </Callout >
2017+
20142018Deploy a trigger component that will emit events to a webhook or workflow for a Pipedream Connect user.
20152019
20162020``` text
@@ -2492,14 +2496,14 @@ curl -X GET \
24922496Retrieve a single deployed trigger for a given user.
24932497
24942498``` text
2495- GET /deployed-triggers/{deployed_component_id }/
2499+ GET /deployed-triggers/{deployed_trigger_id }/
24962500```
24972501
24982502##### Path parameters
24992503
2500- ` dcid ` ** string**
2504+ ` deployed_trigger_id ` ** string**
25012505
2502- The deployed component ID for the trigger you'd like to retrieve.
2506+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
25032507
25042508##### Query parameters
25052509
@@ -2590,7 +2594,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
25902594
25912595curl -X GET \
25922596 -G \
2593- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/" \
2597+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/" \
25942598 -H " Authorization: Bearer {access_token}" \
25952599 -H " Content-Type: application/json" \
25962600 -H " x-pd-environment: development" \
@@ -2677,14 +2681,14 @@ curl -X GET \
26772681Delete deployed trigger for a given user.
26782682
26792683``` text
2680- DELETE /deployed-triggers/{deployed_component_id }/
2684+ DELETE /deployed-triggers/{deployed_trigger_id }/
26812685```
26822686
26832687##### Path parameters
26842688
2685- ` dcid ` ** string**
2689+ ` deployed_trigger_id ` ** string**
26862690
2687- The deployed component ID for the trigger you'd like to retrieve.
2691+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
26882692
26892693##### Query parameters
26902694
@@ -2768,7 +2772,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
27682772
27692773curl -X DELETE \
27702774 -G \
2771- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/" \
2775+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/" \
27722776 -H " Authorization: Bearer {access_token}" \
27732777 -H " Content-Type: application/json" \
27742778 -H " x-pd-environment: development" \
@@ -2787,14 +2791,14 @@ Pipedream returns a `204 No Content` response on successful deletion
27872791Retrieve a list of the last events that a deployed trigger emitted.
27882792
27892793``` text
2790- GET /deployed-triggers/{deployed_component_id }/events/
2794+ GET /deployed-triggers/{deployed_trigger_id }/events/
27912795```
27922796
27932797##### Path parameters
27942798
2795- ` dcid ` ** string**
2799+ ` deployed_trigger_id ` ** string**
27962800
2797- The deployed component ID for the trigger you'd like to retrieve.
2801+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
27982802
27992803##### Query parameters
28002804
@@ -2889,7 +2893,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
28892893
28902894curl -X GET \
28912895 -G \
2892- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/events" \
2896+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/events" \
28932897 -H " Authorization: Bearer {access_token}" \
28942898 -H " Content-Type: application/json" \
28952899 -H " x-pd-environment: development" \
@@ -2984,14 +2988,14 @@ curl -X GET \
29842988Retrieve the list of webhook URLs listening to a deployed trigger.
29852989
29862990``` text
2987- GET /deployed-triggers/{deployed_component_id }/webhooks/
2991+ GET /deployed-triggers/{deployed_trigger_id }/webhooks/
29882992```
29892993
29902994##### Path parameters
29912995
2992- ` dcid ` ** string**
2996+ ` deployed_trigger_id ` ** string**
29932997
2994- The deployed component ID for the trigger you'd like to retrieve.
2998+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
29952999
29963000##### Query parameters
29973001
@@ -3081,7 +3085,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
30813085
30823086curl -X GET \
30833087 -G \
3084- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/webhooks/" \
3088+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/webhooks/" \
30853089 -H " Authorization: Bearer {access_token}" \
30863090 -H " Content-Type: application/json" \
30873091 -H " x-pd-environment: development" \
@@ -3105,14 +3109,14 @@ curl -X GET \
31053109Update the list of webhook URLs that will listen to a deployed trigger.
31063110
31073111``` text
3108- PUT /deployed-triggers/{deployed_component_id }/webhooks/
3112+ PUT /deployed-triggers/{deployed_trigger_id }/webhooks/
31093113```
31103114
31113115##### Path parameters
31123116
3113- ` dcid ` ** string**
3117+ ` deployed_trigger_id ` ** string**
31143118
3115- The deployed component ID for the trigger you'd like to retrieve.
3119+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
31163120
31173121##### Query parameters
31183122
@@ -3220,7 +3224,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
32203224# This request will update the list of webhook URLs listening to the specified deployed trigger.
32213225
32223226curl -X PUT \
3223- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/webhooks/" \
3227+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/webhooks/" \
32243228 -H " Authorization: Bearer {access_token}" \
32253229 -H " Content-Type: application/json" \
32263230 -H " x-pd-environment: development" \
@@ -3244,14 +3248,14 @@ curl -X PUT \
32443248Retrieve the list of workflow IDs listening to a deployed trigger.
32453249
32463250``` text
3247- GET /deployed-triggers/{deployed_component_id }/workflows/
3251+ GET /deployed-triggers/{deployed_trigger_id }/workflows/
32483252```
32493253
32503254##### Path parameters
32513255
3252- ` dcid ` ** string**
3256+ ` deployed_trigger_id ` ** string**
32533257
3254- The deployed component ID for the trigger you'd like to retrieve.
3258+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
32553259
32563260##### Query parameters
32573261
@@ -3341,7 +3345,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
33413345
33423346curl -X GET \
33433347 -G \
3344- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/workflows/" \
3348+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/workflows/" \
33453349 -H " Authorization: Bearer {access_token}" \
33463350 -H " Content-Type: application/json" \
33473351 -H " x-pd-environment: development" \
@@ -3366,14 +3370,14 @@ curl -X GET \
33663370Update the list of workflows that will listen to a deployed trigger.
33673371
33683372``` text
3369- PUT /deployed-triggers/{deployed_component_id }/workflows/
3373+ PUT /deployed-triggers/{deployed_trigger_id }/workflows/
33703374```
33713375
33723376##### Path parameters
33733377
3374- ` dcid ` ** string**
3378+ ` deployed_trigger_id ` ** string**
33753379
3376- The deployed component ID for the trigger you'd like to retrieve.
3380+ The deployed trigger ID for the trigger you'd like to retrieve (ex, ` dc_xxxxxxx ` , ` hi_xxxxxxx ` , ` ti_xxxxxxx ` , or ` ei_xxxxxxx ` ) .
33773381
33783382##### Query parameters
33793383
@@ -3482,7 +3486,7 @@ curl -X POST https://api.pipedream.com/v1/oauth/token \
34823486# This request will update the list of webhook URLs listening to the specified deployed trigger.
34833487
34843488curl -X PUT \
3485- " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{dcid }/webhooks/" \
3489+ " https://api.pipedream.com/v1/connect/{your_project_id}/deployed-triggers/{deployed_trigger_id }/webhooks/" \
34863490 -H " Authorization: Bearer {access_token}" \
34873491 -H " Content-Type: application/json" \
34883492 -H " x-pd-environment: development" \
0 commit comments